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
- Host: GitHub
- URL: https://github.com/drowzy/meld
- Owner: drowzy
- Created: 2023-04-25T20:25:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-25T20:26:09.000Z (about 3 years ago)
- Last Synced: 2025-02-16T11:14:09.343Z (over 1 year ago)
- Language: Elixir
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```