[E]Redis wrapper
- Add
kv
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:kv, github: "recr0ns/kv"}]
end
```
- Ensure
kv
is started before your application:
```elixir
def application do
[applications: [:kv]]
end
```
- Config sample
```elixir
config :kv, :redis,
pool_size: 10,
max_overflow: 5,
host: '127.0.0.1',
port: 6379,
database: 1,
timeout: 5000
```