An open API service indexing awesome lists of open source software.

https://github.com/drowzy/meld

Request coalescing for Elixir
https://github.com/drowzy/meld

Last synced: about 1 year ago
JSON representation

Request coalescing for Elixir

Awesome Lists containing this project

README

          

# Meld

A Request coalescing library for Elixir.

> Request coalescing is the practice of combining multiple requests for the same object into a single request to origin,
> and then potentially using the resulting response to satisfy all pending requests.

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `meld` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[
{:meld, "~> 0.1.0"}
]
end
```