redis icon indicating copy to clipboard operation
redis copied to clipboard

Redis commands for Elixir

Results 7 redis issues
Sort by recently updated
recently updated
newest added

I think this library is done, it has non-idiomatic API with just a few really useful functions, like scripts execution and `defredis` macro (thank you guys for implementation :metal:). This...

Is there currently a way use redis keyspace notifications to trigger timed events and receive them in elixir? Thanks! -Chris

Shouldn't we be using {:ok, vaue} and {:error, error} for responses as per elixir/erlang convention?

I need to subscribe to a pattern and to a normal channel, here is my code ``` client_sub = getRedisSub() client_sub |> Exredis.Sub.subscribe "status", fn(msg) -> case msg do {:message,...

Redis cluster support would be fantastic. Cluster support can be implemented as a wrapper to the underlying connection library so this doesn't need to be implemented in eredis for exredis...

Hello, I was having problems connecting to my Redis database, always receiving this error: ``` erlang ** (EXIT from #PID) {:connection_error, {:authentication_error, {:unexpected_data, {:ok, "-ERR wrong number of arguments for...

Hi There, Thanks for the great work and maintaining the redis library. We are using `exredis` and just wondering how it can be configured to support tls/ssl connection. Heroku is...