2
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 23 hours ago. based on code collected about 23 hours ago.
Jun 06, 2024 — Jun 06, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
HKEYS HVALS and HGETALL implemented More... about 15 years ago
HDEL implemented More... about 15 years ago
added ZRANK and ZREVRANK commands. More... about 15 years ago
no reason to join the names here -- just let the format_inline do it, that way we get the benefit of encoding, too! More... about 15 years ago
Fixed a bug with pipeline execution of AUTH and SELECT commands. These failed after MULTI and EXEC were added, since you can't run MULTI until you've auth'd, and it doesn't make sense to run SELECT within a multi/exec. More... about 15 years ago
Flushed out the connection manager object a bit more. More... about 15 years ago
fixed #15 where zscore previously failed for members of a sorted set that didn't exist. also made anal cleanup changes removing whitespace before colons! More... about 15 years ago
all commands being executed in a pipeline are now executing with a single socket send call. this should increase network throughput More... about 15 years ago
Pipeline objects are now executed atomically via the MULTI and EXEC commands More... about 15 years ago
HSET now returns 1 if it added a new field to the hash, otherwise 0. There was no test for RPUSH, now there is :) More... about 15 years ago
HSET now always returned True, which also fixed part of the test More... about 15 years ago
added HGET/HSET commands removed the KEYS callback -- 1.34 Redis servers now return KEYS with the multi-bulk protocol, which means they're already in a list More... about 15 years ago
the Redis class is now a thread local. This means you can safely pass it around between threads and connections will get swapped out correctly. More... over 15 years ago
Merge remote branch 'tabo/master' More... over 15 years ago
Merge branch 'master' of github.com:andymccurdy/redis-py More... over 15 years ago
complete analness about the : More... over 15 years ago
adding support for the new lpush/rpush returning the list length More... over 15 years ago
docstring typos More... over 15 years ago
Add Redis.__contains__ to support "'key' in redis" More... over 15 years ago
fixed a comment More... over 15 years ago
incremented revision More... over 15 years ago
zrange/zrevrange/zrangebyscore should always return None if the key is insvalid, even if withscores=True is passed More... over 15 years ago
should have beest testing lpop, not pop, which is deprecated More... over 15 years ago
removal of the legacy client More... over 15 years ago
Merge branch 'newapi' More... over 15 years ago
key lists passed to blpop and brpop are not unmodified. thanks to Patrick Shields for finding this bug More... over 15 years ago
Add ignores for build outputs. More... over 15 years ago
package the updated README.md More... over 15 years ago
rename to get nice highlighing on github ;) More... over 15 years ago
readme sample usage More... over 15 years ago