]>
git.saurik.com Git - redis.git/log
Hampus Wessman [Sun, 3 Jul 2011 10:18:44 +0000 (12:18 +0200)]
Don't expire keys while loading AOF.
They will be expired (and a DEL will be logged) after the loading is done
instead.
Hampus Wessman [Sun, 3 Jul 2011 09:04:55 +0000 (11:04 +0200)]
Add test for incorrect expiration when loading AOF.
antirez [Wed, 6 Jul 2011 13:22:00 +0000 (15:22 +0200)]
more valgrind friendly test
antirez [Tue, 5 Jul 2011 11:27:21 +0000 (13:27 +0200)]
Ingore jemalloc make distclean error in Makefile, caused by make clean against a tree that never compiled jemalloc.
antirez [Sun, 3 Jul 2011 13:49:49 +0000 (15:49 +0200)]
Fixed typo in redis.conf related to slow log parameters
antirez [Sat, 2 Jul 2011 08:51:35 +0000 (10:51 +0200)]
childrens -> children in INFO output field names. This is a backward incompatible change, but really a minimal one.
antirez [Sat, 2 Jul 2011 08:25:35 +0000 (10:25 +0200)]
no more allocation stats info in INFO, useless now that we have jemalloc.
antirez [Fri, 1 Jul 2011 13:49:17 +0000 (15:49 +0200)]
Added slowlog.tcl
antirez [Thu, 30 Jun 2011 16:44:58 +0000 (18:44 +0200)]
SLOWLOG tests
antirez [Thu, 30 Jun 2011 15:36:15 +0000 (17:36 +0200)]
Added an unique ID field to every slow log entry.
antirez [Thu, 30 Jun 2011 13:54:05 +0000 (15:54 +0200)]
More redis.conf self-documentation. Now even queries that took exactly server.slow_log_slower_than are logged, as this is not exact but is more intuitive for people, and a value of 0 will force every query to be logged.
antirez [Thu, 30 Jun 2011 13:47:15 +0000 (15:47 +0200)]
slow log configuration implemented
antirez [Thu, 30 Jun 2011 11:34:38 +0000 (13:34 +0200)]
hiredis max multi bulk nesting level raised to 7
antirez [Thu, 30 Jun 2011 11:31:44 +0000 (13:31 +0200)]
DEUBG SLEEP implemented
antirez [Thu, 30 Jun 2011 11:27:32 +0000 (13:27 +0200)]
First implementation of the slow log feature
antirez [Wed, 29 Jun 2011 14:10:28 +0000 (16:10 +0200)]
Partial fix for a problem with AOF and BRPOP. We have at least a single evidence of an AOF that ended with a BRPOP call against an empty list, causing later issues at run time. Now the problem is detected while loading the AOF at startup, even if it is still to understand how the corrupted AOF was generated.
antirez [Sat, 25 Jun 2011 10:22:59 +0000 (12:22 +0200)]
Merge remote branch 'origin/unstable' into unstable
antirez [Sat, 25 Jun 2011 10:22:03 +0000 (12:22 +0200)]
diskstore removed
Salvatore Sanfilippo [Fri, 24 Jun 2011 16:59:37 +0000 (09:59 -0700)]
Merge pull request #63 from djanowski/tcl
Add warning when `tcl` is not available to run tests
Damian Janowski [Fri, 24 Jun 2011 16:56:06 +0000 (13:56 -0300)]
Avoid bug reports when Tcl is not installed.
antirez [Mon, 20 Jun 2011 15:07:18 +0000 (17:07 +0200)]
Fix for bug 561 and other related problems
antirez [Tue, 14 Jun 2011 14:22:54 +0000 (16:22 +0200)]
useless call removed, thanks to Pieter for spotting this
Pieter Noordhuis [Mon, 13 Jun 2011 19:06:44 +0000 (21:06 +0200)]
SETNX regression tests.
antirez [Tue, 14 Jun 2011 13:34:27 +0000 (15:34 +0200)]
DB API refactoring. The changes were designed together with Pieter Noordhuis.
antirez [Mon, 20 Jun 2011 09:58:54 +0000 (11:58 +0200)]
Makefile deps updated
antirez [Wed, 1 Jun 2011 15:08:12 +0000 (17:08 +0200)]
It is now possible to build with: make 32bit USE_JEMALLOC=yes
antirez [Wed, 1 Jun 2011 15:56:50 +0000 (17:56 +0200)]
Added -ldl when linking against jemalloc, needed on Linux
antirez [Mon, 20 Jun 2011 09:54:08 +0000 (11:54 +0200)]
Fixed INFO implementation to use the new allocator name define
antirez [Mon, 20 Jun 2011 09:52:15 +0000 (11:52 +0200)]
Makefile modified to build with jemalloc
Pieter Noordhuis [Tue, 17 May 2011 10:25:33 +0000 (12:25 +0200)]
Ignore jemalloc build artifacts
antirez [Mon, 20 Jun 2011 09:35:29 +0000 (11:35 +0200)]
ZMALLOC related stuff removed from config.h. They are now defined in zmalloc.h
antirez [Mon, 20 Jun 2011 09:34:04 +0000 (11:34 +0200)]
forward-ported changes in zmalloc.c/h to support jemalloc build
antirez [Mon, 9 May 2011 08:52:55 +0000 (10:52 +0200)]
jemalloc source added
antirez [Fri, 17 Jun 2011 14:13:22 +0000 (16:13 +0200)]
new INFO filed master_link_down_since_seconds
antirez [Fri, 17 Jun 2011 13:40:55 +0000 (15:40 +0200)]
Use a safe iterator while saving the DB, since the getExpire() function will access the iterating dictionary.
antirez [Tue, 14 Jun 2011 15:11:44 +0000 (17:11 +0200)]
Fixed init script bug, thanks to Henrik Westphal
antirez [Tue, 14 Jun 2011 11:48:49 +0000 (13:48 +0200)]
Better init script
Salvatore Sanfilippo [Tue, 14 Jun 2011 08:26:42 +0000 (01:26 -0700)]
Merge pull request #58 from hampus/fix-autorewrite
Fix automatic rewrite starting too early
Hampus Wessman [Sun, 12 Jun 2011 05:27:01 +0000 (07:27 +0200)]
Fix automatic rewrite starting too early.
Slight adjustment in growth calculation.
antirez [Fri, 10 Jun 2011 16:35:16 +0000 (18:35 +0200)]
different message on BGREWRITEAOF when it is just scheduled and not started.
antirez [Fri, 10 Jun 2011 16:13:57 +0000 (18:13 +0200)]
minor code aesthetic change
antirez [Fri, 10 Jun 2011 13:15:29 +0000 (15:15 +0200)]
Make sure an automatic rewrite only gets triggered when no other child is in execution.
antirez [Fri, 10 Jun 2011 13:14:10 +0000 (15:14 +0200)]
CONFIG SET/GET support for new automatic AOF rewrite parameters
antirez [Fri, 10 Jun 2011 12:56:45 +0000 (14:56 +0200)]
correctly set AOF base size field in server structure
antirez [Fri, 10 Jun 2011 12:52:47 +0000 (14:52 +0200)]
Added new INFO fields related to the new AOF auto rewrite feature
antirez [Fri, 10 Jun 2011 12:47:12 +0000 (14:47 +0200)]
Fixed bug in AOF rewrite not working because of integer overflow
antirez [Fri, 10 Jun 2011 12:44:06 +0000 (14:44 +0200)]
debugging printf removed
antirez [Fri, 10 Jun 2011 12:43:11 +0000 (14:43 +0200)]
AOF auto rewrite percentage option parsing fixed
antirez [Fri, 10 Jun 2011 12:28:14 +0000 (14:28 +0200)]
Merge remote branch 'pietern/unstable-bench' into unstable
antirez [Fri, 10 Jun 2011 12:25:27 +0000 (14:25 +0200)]
Avoid division by zero issues in the automatically triggered AOF rewrite feature.
antirez [Fri, 10 Jun 2011 10:39:40 +0000 (12:39 +0200)]
Merge remote branch 'origin/unstable' into unstable
antirez [Fri, 10 Jun 2011 10:39:23 +0000 (12:39 +0200)]
automatic AOF rewrite first implementation. Still to be tested.
Salvatore Sanfilippo [Thu, 9 Jun 2011 16:50:55 +0000 (09:50 -0700)]
Merge pull request #57 from melo/patch-1
Small fix in the installation instructions
Pedro Melo [Thu, 9 Jun 2011 16:14:18 +0000 (09:14 -0700)]
Small fix in the installation instructions
Hampus Wessman [Thu, 9 Jun 2011 09:17:32 +0000 (11:17 +0200)]
Fix Makefile colors.
echo with escape sequences isn't portable. Use printf instead.
antirez [Thu, 9 Jun 2011 13:35:07 +0000 (15:35 +0200)]
Two fixes for replication: Slave performs the AOF rewrite at the right point. Non blocking connect also uses readable handler as with old Linux kernels like 2.6.18 on connection refused the writable even is not fired (kernel bug).
antirez [Wed, 8 Jun 2011 15:09:18 +0000 (17:09 +0200)]
Better colorized Makefile implementation, inspired by git makefile
antirez [Tue, 7 Jun 2011 15:01:45 +0000 (17:01 +0200)]
Merge branch 'unstable'
antirez [Sun, 5 Jun 2011 18:51:49 +0000 (20:51 +0200)]
Merge remote branch 'origin/unstable' into unstable
antirez [Sun, 5 Jun 2011 18:51:07 +0000 (20:51 +0200)]
no more client-libraries directory
antirez [Sun, 5 Jun 2011 18:50:22 +0000 (20:50 +0200)]
no more html documentation
antirez [Thu, 2 Jun 2011 15:41:42 +0000 (17:41 +0200)]
touch less pages in decrRefCount
Pieter Noordhuis [Wed, 1 Jun 2011 00:38:39 +0000 (17:38 -0700)]
There is no debug mode in benchmark tool
Pieter Noordhuis [Wed, 1 Jun 2011 00:19:11 +0000 (17:19 -0700)]
Provide custom command to benchmark against via args
Pieter Noordhuis [Wed, 1 Jun 2011 00:15:42 +0000 (17:15 -0700)]
More const's in redis-benchmark.c
antirez [Tue, 31 May 2011 18:30:54 +0000 (20:30 +0200)]
ZREM tests
antirez [Tue, 31 May 2011 18:15:18 +0000 (20:15 +0200)]
Variadic ZREM
antirez [Tue, 31 May 2011 18:14:29 +0000 (20:14 +0200)]
Fix for the variadic version of SREM. Regression test added.
antirez [Tue, 31 May 2011 16:49:12 +0000 (18:49 +0200)]
disabled development test entry, tests moved in the right place
antirez [Tue, 31 May 2011 16:35:09 +0000 (18:35 +0200)]
Variadic ZADD tests
antirez [Tue, 31 May 2011 15:47:34 +0000 (17:47 +0200)]
Variadic ZADD
Pieter Noordhuis [Mon, 30 May 2011 00:55:13 +0000 (17:55 -0700)]
Make replication faster (biggest gain for small number of slaves)
antirez [Sun, 29 May 2011 13:17:29 +0000 (15:17 +0200)]
INFO now contains the time (in usecs) needed to fork() in order to persist. The info is available in the stats section of INFO.
antirez [Sun, 29 May 2011 12:26:01 +0000 (14:26 +0200)]
Merge remote branch 'pietern/unstable-replnonblock' into unstable
antirez [Sat, 28 May 2011 13:41:08 +0000 (15:41 +0200)]
redis-cli: -i (interval) implemented, to wait the specified number of seconds (decimal digits are allowed) between commands.
antirez [Sat, 28 May 2011 13:25:48 +0000 (15:25 +0200)]
redis-cli: Use the repetiton prefix after a reconnection.
antirez [Sat, 28 May 2011 13:13:55 +0000 (15:13 +0200)]
redis-cli in REPL mode is now able to send the same command multiple times, prefixing the command with a number as in "10 ping"
antirez [Sat, 28 May 2011 13:04:12 +0000 (15:04 +0200)]
redis-cli no longer aborts in repl-mode on error, and retries to reconncet with the server at every command issued if the state is not connected. Also the prompt shows the server we are connected to.
antirez [Wed, 25 May 2011 10:33:25 +0000 (12:33 +0200)]
Merge branch 'unstable'
antirez [Wed, 25 May 2011 10:29:14 +0000 (12:29 +0200)]
Fix for Pub/Sub system, introduced in Redis 2.2.6 with the new copy-on-write safe iterator semantics. In the hope this is the last bug I introduced this way.
antirez [Tue, 24 May 2011 08:43:19 +0000 (10:43 +0200)]
Comment typo fixed
antirez [Tue, 24 May 2011 08:35:48 +0000 (10:35 +0200)]
Fixed typo in comment
Pieter Noordhuis [Sun, 22 May 2011 10:57:30 +0000 (12:57 +0200)]
Configurable synchronous I/O timeout
Pieter Noordhuis [Sun, 22 May 2011 10:41:24 +0000 (12:41 +0200)]
Minor changes in non-blocking repl. connect
antirez [Fri, 20 May 2011 09:45:05 +0000 (11:45 +0200)]
Merge branch 'unstable' of github.com:antirez/redis into unstable
antirez [Fri, 20 May 2011 09:44:09 +0000 (11:44 +0200)]
Print version info before running the test
Pieter Noordhuis [Thu, 19 May 2011 16:53:06 +0000 (18:53 +0200)]
Non-blocking connect with master
antirez [Thu, 19 May 2011 15:58:29 +0000 (17:58 +0200)]
Fix for ZUNIONSTORE bug when there is an empty set among input sets. Regression test added.
antirez [Thu, 19 May 2011 15:58:29 +0000 (17:58 +0200)]
Fix for ZUNIONSTORE bug when there is an empty set among input sets. Regression test added.
antirez [Mon, 16 May 2011 15:20:27 +0000 (17:20 +0200)]
fmacros in utils.c to avoid warning about strcasecmp()
antirez [Mon, 16 May 2011 08:04:09 +0000 (10:04 +0200)]
Merge branch 'unstable'
antirez [Sun, 15 May 2011 15:28:06 +0000 (17:28 +0200)]
Fixed misuse of the new iterator semantics in ZUNIONSTORE
antirez [Sun, 15 May 2011 13:33:01 +0000 (15:33 +0200)]
Fix for a possible bug related to ZINTER/UNIONSTORE called with the same source set more than one time.
antirez [Sun, 15 May 2011 10:15:54 +0000 (12:15 +0200)]
Fixed SINTER[STORE] problem related to the new copy on write safe iterator
antirez [Thu, 12 May 2011 18:15:13 +0000 (20:15 +0200)]
replication with expire test modified to produce no or less false failures
antirez [Thu, 12 May 2011 18:21:00 +0000 (20:21 +0200)]
Merge branch 'unstable' of github.com:antirez/redis into unstable
antirez [Thu, 12 May 2011 18:20:25 +0000 (20:20 +0200)]
ZINTERSTORE regressiont test with two sets, intset+hashtable
antirez [Wed, 11 May 2011 07:49:23 +0000 (09:49 +0200)]
removed assert causing an illegal memory access. This was responsible of crashes during BLPOP and other list blocking operations.
antirez [Tue, 10 May 2011 12:05:59 +0000 (14:05 +0200)]
Merge branch 'unstable'
antirez [Tue, 10 May 2011 09:31:37 +0000 (11:31 +0200)]
RDB version signature bumped to 2, now that direct saving of specially encoded types is implemented 2.2 instances are no longer able to read rdb files produced by 2.4 or unstable.