summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-10-15 13:04:38 +0200
committerantirez <antirez@gmail.com>2010-10-15 13:04:38 +0200
commitb766149d5fa4cdb76c117f4246d83948babf0ad8 (patch)
treefc9e406cf0dc4822ec012440827730dcf695c75d
parent4ac0c844ed51ee1d890235a9a548005028ec2050 (diff)
downloadredis-b766149d5fa4cdb76c117f4246d83948babf0ad8.tar.gz
new release notes for 2.0.3v2.0.3-stable2.0.3
-rw-r--r--00-RELEASENOTES20
1 files changed, 20 insertions, 0 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 872957c37..5a4fe3764 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -1,3 +1,23 @@
+Welcome to Redis 2.0.3
+
+This release fixes two important bugs:
+
+ - The maxmemory directive was broken in Redis <= 2.0.2, since from time to
+ time it replayed with an error about memory limit reached even when
+ it was possible to expire some volatile key to make room for new data.
+
+ The new behaviour is the correct one of always allowing write operations
+ to succeed as long as there are other volatile keys to remove.
+
+ - An AOF bug related to blocking POP could crash Redis on AOF reload.
+ This is now fixed thanks to Pieter Noordhuis and a kind user that
+ helped us on IRC.
+
+Enjoy!
+Salvatore
+
+--------------------------------------------------------------------------------
+
Welcome to Redis 2.0.2
This is a bugfix release, with the followign changes: