diff options
author | antirez <antirez@gmail.com> | 2010-04-30 11:52:36 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2010-04-30 11:52:36 +0200 |
commit | 3c5caedc69b9873a500a572020be2097db1920de (patch) | |
tree | f0240d5ec51495829d4ad499bb40076217a2bc05 /Changelog | |
parent | a737ada1e58e6cd75e2fc643e2e55778de17b2ef (diff) | |
download | redis-3c5caedc69b9873a500a572020be2097db1920de.tar.gz |
More tests for APPEND and tests for SUBSTR
Diffstat (limited to 'Changelog')
-rw-r--r-- | Changelog | 67 |
1 files changed, 67 insertions, 0 deletions
@@ -1,3 +1,70 @@ +2010-04-30 linenoise.c updated, now redis-cli can be used in a pipe (antirez) +2010-04-29 redis-cli minor fix (less segfault is better) (antirez) +2010-04-29 New MONITOR output format with timestamp, every command in a single line, string representations (antirez) +2010-04-29 redis-cli INFO output format is now raw again (antirez) +2010-04-29 Added more information about slave election in Redis Cluster alternative doc (antirez) +2010-04-29 Redis cluster version 2 (antirez) +2010-04-27 Fixed a redis-cli bug, was using free instead of zfree call (antirez) +2010-04-27 AOF is now rewritten on slave after SYNC with master. Thanks to @_km for finding this bug and any others' (antirez) +2010-04-27 redis-cli is now using only the new protocol (antirez) +2010-04-27 Minimal support for subscribe/psubscribe in redis-cli (antirez) +2010-04-26 don't output the newline when stdout is not a tty (antirez) +2010-04-26 redis-cli now is able to also output the string representation instead of the raw string. Much better for debugging (antirez) +2010-04-26 Initial support for quoted strings in redis-cli (antirez) +2010-04-23 SETEX implemented (antirez) +2010-04-23 Pub/Sub API change: now messages received via pattern matching have a different message type and an additional field representing the original pattern the message matched (antirez) +2010-04-22 typo fixed, reloaded (antirez) +2010-04-22 typo fixed (antirez) +2010-04-22 REDIS-CLUSTER doc updated (antirez) +2010-04-22 Virtual memory design document removed, no longer needed as we have a full specification and implementation (antirez) +2010-04-22 new units for bytes specification (antirez) +2010-04-22 Now in redis.conf it is possible to specify units where appropriate instead of amounts of bytes, like 2Gi or 4M and so forth (antirez) +2010-04-21 binary safe keys ready implementation of RANDOMKEYS (antirez) +2010-04-21 Now that's the right 1.3.10 (antirez) +2010-04-21 Revert "fsync always now uses O_DIRECT on Linux" (antirez) +2010-04-21 Revert "define __USE_GNU to get O_DIRECT" (antirez) +2010-04-21 Merge branch 'master' of github.com:antirez/redis (antirez) +2010-04-21 Revert "version 1.3.10" (antirez) +2010-04-21 version 1.3.10 (antirez) +2010-04-20 define __USE_GNU to get O_DIRECT (antirez) +2010-04-20 fsync always now uses O_DIRECT on Linux (antirez) +2010-04-20 More precise memory used guesswork in zmalloc.c (antirez) +2010-04-19 Fix for MULTI/EXEC and Replication/AOF: now the block is correctly sent as MULTI/..writing operations../EXEC. Ok for slaves but more work needed for the AOF as it should be a write-all-or-nothing business (antirez) +2010-04-19 running the test using tcl8.5 directly instead of tclsh that too often it's a symlink to 8.4 (antirez) +2010-04-19 Added package require Tcl 8.5 in redis.tcl so it will show a clear error when the test suit is attempted to run under 8.4 (antirez) +2010-04-18 Fix for a SORT bug introduced with commit 16fa22f1, regression test added (antirez) +2010-04-18 Guru mediation -> meditation (antirez) +2010-04-16 check eptr inline (Pieter Noordhuis) +2010-04-16 refactor code that retrieves value from object or replies to client (Pieter Noordhuis) +2010-04-17 Merge branch 'hash' of git://github.com/pietern/redis (antirez) +2010-04-17 redisAssert(0) => redisPanic("something meaningful") (antirez) +2010-04-17 make sure that the resulting value in hincrby is encoded when possible (Pieter Noordhuis) +2010-04-17 increment dirty counter after hmset (Pieter Noordhuis) +2010-04-17 strip tryObjectEncoding from hashSet, to enable the arguments being encoded in-place (Pieter Noordhuis) +2010-04-17 Added support for Guru Mediation, and raising a guru mediation if refCount <= 0 but decrRefCount is called against such an object (antirez) +2010-04-16 fix small error and memory leaks in SORT (Pieter Noordhuis) +2010-04-16 SORT/GET test added (antirez) +2010-04-16 Added tests for GET/BY against hashes fields (antirez) +2010-04-16 Merge branch 'hash-refactor' of git://github.com/pietern/redis (antirez) +2010-04-16 check object type in lookupKeyByPattern (Pieter Noordhuis) +2010-04-16 make sortCommand aware that lookupKeyByPattern always increased the refcount of the returned value (Pieter Noordhuis) +2010-04-16 revert 0c390a to stop using tricks with o->refcount (Pieter Noordhuis) +2010-04-16 store the hash iterator on the heap instead of the stack (Pieter Noordhuis) +2010-04-16 drop inline directive (Pieter Noordhuis) +2010-04-16 rename hashReplace to hashSet (Pieter Noordhuis) +2010-04-16 added dictFetchValue() to dict.c to make hash table API a bit less verbose in the common cases (antirez) +2010-04-03 Don't set expire to keys with ttl=0, remove them immediately. (antirez) +2010-04-15 make sure that cmpobj is in decoded form when sorting by ALPHA (this solves edge case from previous commit where (!sortby && alpha) == 1) (Pieter Noordhuis) +2010-04-15 enable hash dereference in SORT on BY and GET (Pieter Noordhuis) +2010-04-15 use shared replies for hset (Pieter Noordhuis) +2010-04-15 set refcount of string objects retrieved from zipmaps to 0, so we don't have to touch the refcount of the objects inside dicts (Pieter Noordhuis) +2010-04-15 added HSETNX (Pieter Noordhuis) +2010-04-14 refactor of hash commands to use specialized api that abstracts zipmap and dict apis (Pieter Noordhuis) +2010-04-13 move retrieval of long up to prevent an empty hash from being created (Pieter Noordhuis) +2010-04-15 more advanced leaks detection in test redis (antirez) +2010-04-15 ability to select port/host from make test (antirez) +2010-04-15 Active rehashing (antirez) +2010-04-15 Incrementally rehahsing hash table! Thanks to Derek Collison and Pieter Noordhuis for feedbacks/help (antirez) 2010-04-14 Does not allow commands other than Pub/Sub commands when there is at least one pattern (antirez) 2010-04-13 Fixed a tiny memory leak when loading the configuration file. (Alex McHale) 2010-04-13 Merge branch 'hmget' of git://github.com/pietern/redis (antirez) |