Redis 2.2.9

This commit is contained in:
antirez 2011-06-09 19:08:22 +02:00
parent be87e76906
commit 7d8c021a9a
2 changed files with 13 additions and 1 deletions

View File

@ -15,6 +15,18 @@ CHANGELOG
What's new in Redis 2.2.8 What's new in Redis 2.2.8
========================= =========================
Redis 2.2.9 is an important bugfix release:
* A Slave used to rewrite the AOF log after a sync with the master, but the
rewrite was performed at the wrong time, causing inconsistencies in the
AOF file generated.
* [LR]LPUSH replication in presence of BRPOPLPUSH was broken. Fixed.
* Memory leak in BRPOPLPUSH fixed.
* Pub/Sub bug resulting in random crashes fixed.
What's new in Redis 2.2.8
=========================
* A new form of dict.c (hash table implementation) iterator that performs less * A new form of dict.c (hash table implementation) iterator that performs less
copy-on-write of pages, introduced in Redis 2.2.7, caused ZINTERSTORE, copy-on-write of pages, introduced in Redis 2.2.7, caused ZINTERSTORE,
ZUNIONSTORE, SINTER, SINTERSTORE commands to behave in the wrong way. ZUNIONSTORE, SINTER, SINTERSTORE commands to behave in the wrong way.

View File

@ -1 +1 @@
#define REDIS_VERSION "2.2.8" #define REDIS_VERSION "2.2.9"