summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-09-22 11:33:06 +0200
committerantirez <antirez@gmail.com>2010-09-22 11:33:06 +0200
commit70a08f00d7abe44bd5a3eebe3085ac82395590be (patch)
tree4c4bf8eba436f6f60a2230a5a983ca3aeda5c4a8
parent6ebd11cfa895c01991510b044f205322011d257c (diff)
downloadredis-70a08f00d7abe44bd5a3eebe3085ac82395590be.tar.gz
release notes updated
-rw-r--r--00-RELEASENOTES17
1 files changed, 17 insertions, 0 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 1fff49c61..318fa4f26 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -1,3 +1,20 @@
+Welcome to Redis 2.0.2
+
+This is a bugfix release, with the followign changes:
+
+ - Fixed a bug that may slow down significantly (from a few milliseconds
+ to many seconds) server side intersections when a background write is
+ in progress. This was due to the hash table resize policy, prevented when
+ there was a saving child. Now it's prevented only up to 5 times
+ overbooking, so we try hard to prevent a lot of copy on write, but
+ avoiding to trigger pathological hash table performances of O(N) instead
+ of O(1).
+
+Ciao,
+Salvatore
+
+--------------------------------------------------------------------------------
+
Welcome to Redis 2.0.1
This is a bugfix release, with the following changes: