This repository was archived by the owner on Feb 21, 2023. It is now read-only.
New upcoming v1.0 dev release
New features:
- Connection pool has been refactored; now
create_rediswill yieldRedisinstance instead ofRedisPool
(see #129); - Dropped
create_reconnecting_redis,create_redis_poolshould be used instead; - Implement Sentinel support (see #181);
- Implement pure-python parser (see #212);
- Add
migrate_keyscommand (see #187); - Add
zrevrangebylexcommand (see #201); - Add
command,command_count,command_getkeysandcomman_infocommands (see #229);
Fixed:
- Multi/exec transaction canceled error (see #225);
- Add missing arguments to
create_redisandcreate_redis_pool; - Deprecation warning (see #191);
- Make correct
__aiter__()(see #192); - Backward compatibility fix for
with (yield from pool) as conn(see #205); - Fixed pubsub receiver
stop()(see #211);
Misc:
- Multiple test fixes;
- Add PyPy3 to build matrix;