- Fix bug when using
PUBSUB
locally (#19)
- Partial support for pubsub channels (#18)
- Removed
set
andget
(#17)
- Redis function
EXPIRE
(P*
versions andPERSIST
as well) (#17) - Redis function
TTL
(#17) - Redis function
FLUSHALL
with implementation defined synchrony (#17)
- Started renaming
set
toset_value
andget
toget_value
(#15)
- Add script functionality for dictionaries (#15)
- Redis keys functions:
TYPE
,SCAN
,KEYS
(#15) - Redis set functions:
SADD
,SREM
,SISMEMBER
,SCARD
,SMEMBERS
(#15)
- Fix more pypi links.
- Fix readme links.
- Scripts now need explicitly named arguments. (#3)
- Script errors are now
ValueError
instead ofredis.exceptions.ResponseError
. (#3) - Add name argument to
redipy.plugin.LuaRedisPatch
. (#7)
- Added
ZRANGE
(partially) andLRANGE
. (#7) - Inferring backend in Redis constructor. (#3)
- Allow access to raw runtime and redis connections. (#3)
- Executing scripts from a pipeline. (#3)
- Documentation. (#3)
- Ignored assignment after deleting a key in a pipeline. (#3)
- Error when missing execute call in pipeline. (#3)
HGETALL
returning the wrong result in lua. (#3)HSET
not working in the redis backend. (#3)
- More info about contributing in the readme. (#3)
- Removed some usage of
nil
in lua scripts (in favor ofcjson.null
). (#3)