scala-redis
scala-redis copied to clipboard
A scala library for connecting to a redis server, or a cluster of redis nodes using consistent hashing on the client side.
RedisClient can be initiated with a URL, but the pool version cannot.
In `StringOperations` there are two `set` functions that are missing `(implicit format: Format)`. They are `def set(key: Any, value: Any, nxxx: Any, expx: Any, time: Long): Boolean` and `def set(key:...
I tried to use srem api to remove several members from a set. It doesn't work. It only works with one value. But it works when I use lower api:...
A client that a channel is subscribed does not handle 'PING'. But it seems that it should have according to [the Redis document](http://redis.io/topics/pubsub) When 'PING' is sent to a redis...
When using the client in a multi-threaded execution context, the cache gets updated with overlapped values as in ` $3 SET $6` . Running the Redis operations in a single...
support hyperloglog ?
When a message of type E is passed back in the callback, it's not clear what the application should do. Ideally, attempting to reconnect at some time interval with or...
Seems to be an issue with evalSHA returning a simple string. The loaded script should return "foo", but instead returns "[B@7574e223". The following is run against the head of the...
Play 2.1 uses Ehcache by default. It seems that scala-redis acts as a standalone module and doesn't implement Play's default CacheAPI interface. Any idea how it might be done to...