https://github.com/xetera/load-balancer
A simple round robin load balancer implementation in Elixir
https://github.com/xetera/load-balancer
Last synced: over 1 year ago
JSON representation
A simple round robin load balancer implementation in Elixir
- Host: GitHub
- URL: https://github.com/xetera/load-balancer
- Owner: Xetera
- Created: 2020-08-05T22:18:48.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-06T02:55:47.000Z (almost 6 years ago)
- Last Synced: 2025-01-31T14:48:11.545Z (over 1 year ago)
- Language: Elixir
- Size: 7.81 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LoadBalancer
Basic round robin load balancer implementation in elixir.
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `load_balancer` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:load_balancer, "~> 0.1.0"}
]
end
```
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/load_balancer](https://hexdocs.pm/load_balancer).