erlang-redis icon indicating copy to clipboard operation
erlang-redis copied to clipboard

Erlang bindings for Redis

Results 5 erlang-redis issues
Sort by recently updated
recently updated
newest added

I found a bug in the `redis_reply:data/1` parser. If the redis server should return a reply array followed by any data (PONG in the example below), the `redis_reply` parser will...

`redis_client` does not handle cases where the redis server sends a batch reply. Details to reproduce the problem below: ``` erlang 1> {ok, Conn} = redis:connect(). % connect to the...

I found sending the request line by line to db extremely slow; redis was reporting only processing roughly 23 requests per second on a single connection. This should speed things...

ERROR: Failed to load ......./rebar.config: {error, {4, erl_parse, "bad term"}} When I remove the dash, it fails when getting the deps: ERROR: Dependency dir ...../deps/erlangredis failed application validation with reason:...

Maybe I'm missing something, but it seems to me that if I run redis:connect() when the redis db is down, the client process crashes (i.e. some linked process seems to...