]> git.saurik.com Git - redis.git/log
redis.git
14 years agodon't process EXPIRE with negative TTL or EXPIREAT with time in the past if we are...
antirez [Thu, 7 Jul 2011 14:24:37 +0000 (16:24 +0200)] 
don't process EXPIRE with negative TTL or EXPIREAT with time in the past if we are a slave too (see http://groups.google.com/group/redis-db/browse_thread/thread/5a931fefb88b16d5). Also propagate it as DEL.

14 years agoDon't expire keys while loading AOF.
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.

14 years agoAdd test for incorrect expiration when loading AOF.
Hampus Wessman [Sun, 3 Jul 2011 09:04:55 +0000 (11:04 +0200)] 
Add test for incorrect expiration when loading AOF.

14 years agomore valgrind friendly test
antirez [Wed, 6 Jul 2011 13:22:00 +0000 (15:22 +0200)] 
more valgrind friendly test

14 years agoIngore jemalloc make distclean error in Makefile, caused by make clean against a...
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.

14 years agoFixed typo in redis.conf related to slow log parameters
antirez [Sun, 3 Jul 2011 13:49:49 +0000 (15:49 +0200)] 
Fixed typo in redis.conf related to slow log parameters

14 years agochildrens -> children in INFO output field names. This is a backward incompatible...
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.

14 years agono more allocation stats info in INFO, useless now that we have jemalloc.
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.

14 years agoAdded slowlog.tcl
antirez [Fri, 1 Jul 2011 13:49:17 +0000 (15:49 +0200)] 
Added slowlog.tcl

14 years agoSLOWLOG tests
antirez [Thu, 30 Jun 2011 16:44:58 +0000 (18:44 +0200)] 
SLOWLOG tests

14 years agoAdded an unique ID field to every slow log entry.
antirez [Thu, 30 Jun 2011 15:36:15 +0000 (17:36 +0200)] 
Added an unique ID field to every slow log entry.

14 years agoMore redis.conf self-documentation. Now even queries that took exactly server.slow_lo...
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.

14 years agoslow log configuration implemented
antirez [Thu, 30 Jun 2011 13:47:15 +0000 (15:47 +0200)] 
slow log configuration implemented

14 years agohiredis max multi bulk nesting level raised to 7
antirez [Thu, 30 Jun 2011 11:34:38 +0000 (13:34 +0200)] 
hiredis max multi bulk nesting level raised to 7

14 years agoDEUBG SLEEP implemented
antirez [Thu, 30 Jun 2011 11:31:44 +0000 (13:31 +0200)] 
DEUBG SLEEP implemented

14 years agoFirst implementation of the slow log feature
antirez [Thu, 30 Jun 2011 11:27:32 +0000 (13:27 +0200)] 
First implementation of the slow log feature

14 years agoPartial fix for a problem with AOF and BRPOP. We have at least a single evidence...
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.

14 years agoMerge remote branch 'origin/unstable' into unstable
antirez [Sat, 25 Jun 2011 10:22:59 +0000 (12:22 +0200)] 
Merge remote branch 'origin/unstable' into unstable

14 years agodiskstore removed
antirez [Sat, 25 Jun 2011 10:22:03 +0000 (12:22 +0200)] 
diskstore removed

14 years agoMerge pull request #63 from djanowski/tcl
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

14 years agoAvoid bug reports when Tcl is not installed.
Damian Janowski [Fri, 24 Jun 2011 16:56:06 +0000 (13:56 -0300)] 
Avoid bug reports when Tcl is not installed.

14 years agoFix for bug 561 and other related problems
antirez [Mon, 20 Jun 2011 15:07:18 +0000 (17:07 +0200)] 
Fix for bug 561 and other related problems

14 years agouseless call removed, thanks to Pieter for spotting this
antirez [Tue, 14 Jun 2011 14:22:54 +0000 (16:22 +0200)] 
useless call removed, thanks to Pieter for spotting this

14 years agoSETNX regression tests.
Pieter Noordhuis [Mon, 13 Jun 2011 19:06:44 +0000 (21:06 +0200)] 
SETNX regression tests.

14 years agoDB API refactoring. The changes were designed together with Pieter Noordhuis.
antirez [Tue, 14 Jun 2011 13:34:27 +0000 (15:34 +0200)] 
DB API refactoring. The changes were designed together with Pieter Noordhuis.

14 years agoMakefile deps updated
antirez [Mon, 20 Jun 2011 09:58:54 +0000 (11:58 +0200)] 
Makefile deps updated

14 years agoIt is now possible to build with: make 32bit USE_JEMALLOC=yes
antirez [Wed, 1 Jun 2011 15:08:12 +0000 (17:08 +0200)] 
It is now possible to build with: make 32bit USE_JEMALLOC=yes

14 years agoAdded -ldl when linking against jemalloc, needed on Linux
antirez [Wed, 1 Jun 2011 15:56:50 +0000 (17:56 +0200)] 
Added -ldl when linking against jemalloc, needed on Linux

14 years agoFixed INFO implementation to use the new allocator name define
antirez [Mon, 20 Jun 2011 09:54:08 +0000 (11:54 +0200)] 
Fixed INFO implementation to use the new allocator name define

14 years agoMakefile modified to build with jemalloc
antirez [Mon, 20 Jun 2011 09:52:15 +0000 (11:52 +0200)] 
Makefile modified to build with jemalloc

14 years agoIgnore jemalloc build artifacts
Pieter Noordhuis [Tue, 17 May 2011 10:25:33 +0000 (12:25 +0200)] 
Ignore jemalloc build artifacts

14 years agoZMALLOC related stuff removed from config.h. They are now defined in zmalloc.h
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

14 years agoforward-ported changes in zmalloc.c/h to support jemalloc build
antirez [Mon, 20 Jun 2011 09:34:04 +0000 (11:34 +0200)] 
forward-ported changes in zmalloc.c/h to support jemalloc build

14 years agojemalloc source added
antirez [Mon, 9 May 2011 08:52:55 +0000 (10:52 +0200)] 
jemalloc source added

14 years agonew INFO filed master_link_down_since_seconds
antirez [Fri, 17 Jun 2011 14:13:22 +0000 (16:13 +0200)] 
new INFO filed master_link_down_since_seconds

14 years agoUse a safe iterator while saving the DB, since the getExpire() function will access...
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.

14 years agoFixed init script bug, thanks to Henrik Westphal
antirez [Tue, 14 Jun 2011 15:11:44 +0000 (17:11 +0200)] 
Fixed init script bug, thanks to Henrik Westphal

14 years agoBetter init script
antirez [Tue, 14 Jun 2011 11:48:49 +0000 (13:48 +0200)] 
Better init script

14 years agoMerge pull request #58 from hampus/fix-autorewrite
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

14 years agoFix 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.

14 years agodifferent message on BGREWRITEAOF when it is just scheduled and not started.
antirez [Fri, 10 Jun 2011 16:35:16 +0000 (18:35 +0200)] 
different message on BGREWRITEAOF when it is just scheduled and not started.

14 years agominor code aesthetic change
antirez [Fri, 10 Jun 2011 16:13:57 +0000 (18:13 +0200)] 
minor code aesthetic change

14 years agoMake sure an automatic rewrite only gets triggered when no other child is in execution.
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.

14 years agoCONFIG SET/GET support for new automatic AOF rewrite parameters
antirez [Fri, 10 Jun 2011 13:14:10 +0000 (15:14 +0200)] 
CONFIG SET/GET support for new automatic AOF rewrite parameters

14 years agocorrectly set AOF base size field in server structure
antirez [Fri, 10 Jun 2011 12:56:45 +0000 (14:56 +0200)] 
correctly set AOF base size field in server structure

14 years agoAdded new INFO fields related to the new AOF auto rewrite feature
antirez [Fri, 10 Jun 2011 12:52:47 +0000 (14:52 +0200)] 
Added new INFO fields related to the new AOF auto rewrite feature

14 years agoFixed bug in AOF rewrite not working because of integer overflow
antirez [Fri, 10 Jun 2011 12:47:12 +0000 (14:47 +0200)] 
Fixed bug in AOF rewrite not working because of integer overflow

14 years agodebugging printf removed
antirez [Fri, 10 Jun 2011 12:44:06 +0000 (14:44 +0200)] 
debugging printf removed

14 years agoAOF auto rewrite percentage option parsing fixed
antirez [Fri, 10 Jun 2011 12:43:11 +0000 (14:43 +0200)] 
AOF auto rewrite percentage option parsing fixed

14 years agoMerge remote branch 'pietern/unstable-bench' into unstable
antirez [Fri, 10 Jun 2011 12:28:14 +0000 (14:28 +0200)] 
Merge remote branch 'pietern/unstable-bench' into unstable

14 years agoAvoid division by zero issues in the automatically triggered AOF rewrite feature.
antirez [Fri, 10 Jun 2011 12:25:27 +0000 (14:25 +0200)] 
Avoid division by zero issues in the automatically triggered AOF rewrite feature.

14 years agoMerge remote branch 'origin/unstable' into unstable
antirez [Fri, 10 Jun 2011 10:39:40 +0000 (12:39 +0200)] 
Merge remote branch 'origin/unstable' into unstable

14 years agoautomatic AOF rewrite first implementation. Still to be tested.
antirez [Fri, 10 Jun 2011 10:39:23 +0000 (12:39 +0200)] 
automatic AOF rewrite first implementation. Still to be tested.

14 years agoMerge pull request #57 from melo/patch-1
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

14 years agoSmall fix in the installation instructions
Pedro Melo [Thu, 9 Jun 2011 16:14:18 +0000 (09:14 -0700)] 
Small fix in the installation instructions

14 years agoFix Makefile colors.
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.

14 years agoTwo fixes for replication: Slave performs the AOF rewrite at the right point. Non...
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).

14 years agoBetter colorized Makefile implementation, inspired by git makefile
antirez [Wed, 8 Jun 2011 15:09:18 +0000 (17:09 +0200)] 
Better colorized Makefile implementation, inspired by git makefile

14 years agoMerge branch 'unstable'
antirez [Tue, 7 Jun 2011 15:01:45 +0000 (17:01 +0200)] 
Merge branch 'unstable'

14 years agoMerge remote branch 'origin/unstable' into unstable
antirez [Sun, 5 Jun 2011 18:51:49 +0000 (20:51 +0200)] 
Merge remote branch 'origin/unstable' into unstable

14 years agono more client-libraries directory
antirez [Sun, 5 Jun 2011 18:51:07 +0000 (20:51 +0200)] 
no more client-libraries directory

14 years agono more html documentation
antirez [Sun, 5 Jun 2011 18:50:22 +0000 (20:50 +0200)] 
no more html documentation

14 years agotouch less pages in decrRefCount
antirez [Thu, 2 Jun 2011 15:41:42 +0000 (17:41 +0200)] 
touch less pages in decrRefCount

14 years agoThere is no debug mode in benchmark tool
Pieter Noordhuis [Wed, 1 Jun 2011 00:38:39 +0000 (17:38 -0700)] 
There is no debug mode in benchmark tool

14 years agoProvide custom command to benchmark against via args
Pieter Noordhuis [Wed, 1 Jun 2011 00:19:11 +0000 (17:19 -0700)] 
Provide custom command to benchmark against via args

14 years agoMore const's in redis-benchmark.c
Pieter Noordhuis [Wed, 1 Jun 2011 00:15:42 +0000 (17:15 -0700)] 
More const's in redis-benchmark.c

14 years agoZREM tests
antirez [Tue, 31 May 2011 18:30:54 +0000 (20:30 +0200)] 
ZREM tests

14 years agoVariadic ZREM
antirez [Tue, 31 May 2011 18:15:18 +0000 (20:15 +0200)] 
Variadic ZREM

14 years agoFix for the variadic version of SREM. Regression test added.
antirez [Tue, 31 May 2011 18:14:29 +0000 (20:14 +0200)] 
Fix for the variadic version of SREM. Regression test added.

14 years agodisabled development test entry, tests moved in the right place
antirez [Tue, 31 May 2011 16:49:12 +0000 (18:49 +0200)] 
disabled development test entry, tests moved in the right place

14 years agoVariadic ZADD tests
antirez [Tue, 31 May 2011 16:35:09 +0000 (18:35 +0200)] 
Variadic ZADD tests

14 years agoVariadic ZADD
antirez [Tue, 31 May 2011 15:47:34 +0000 (17:47 +0200)] 
Variadic ZADD

14 years agoMake replication faster (biggest gain for small number of slaves)
Pieter Noordhuis [Mon, 30 May 2011 00:55:13 +0000 (17:55 -0700)] 
Make replication faster (biggest gain for small number of slaves)

14 years agoINFO now contains the time (in usecs) needed to fork() in order to persist. The info...
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.

14 years agoMerge remote branch 'pietern/unstable-replnonblock' into unstable
antirez [Sun, 29 May 2011 12:26:01 +0000 (14:26 +0200)] 
Merge remote branch 'pietern/unstable-replnonblock' into unstable

14 years agoredis-cli: -i (interval) implemented, to wait the specified number of seconds (decima...
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.

14 years agoredis-cli: Use the repetiton prefix after a reconnection.
antirez [Sat, 28 May 2011 13:25:48 +0000 (15:25 +0200)] 
redis-cli: Use the repetiton prefix after a reconnection.

14 years agoredis-cli in REPL mode is now able to send the same command multiple times, prefixing...
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"

14 years agoredis-cli no longer aborts in repl-mode on error, and retries to reconncet with the...
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.

14 years agoMerge branch 'unstable'
antirez [Wed, 25 May 2011 10:33:25 +0000 (12:33 +0200)] 
Merge branch 'unstable'

14 years agoFix for Pub/Sub system, introduced in Redis 2.2.6 with the new copy-on-write safe...
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.

14 years agoComment typo fixed
antirez [Tue, 24 May 2011 08:43:19 +0000 (10:43 +0200)] 
Comment typo fixed

14 years agoFixed typo in comment
antirez [Tue, 24 May 2011 08:35:48 +0000 (10:35 +0200)] 
Fixed typo in comment

14 years agoConfigurable synchronous I/O timeout
Pieter Noordhuis [Sun, 22 May 2011 10:57:30 +0000 (12:57 +0200)] 
Configurable synchronous I/O timeout

14 years agoMinor changes in non-blocking repl. connect
Pieter Noordhuis [Sun, 22 May 2011 10:41:24 +0000 (12:41 +0200)] 
Minor changes in non-blocking repl. connect

14 years agoMerge branch 'unstable' of github.com:antirez/redis into unstable
antirez [Fri, 20 May 2011 09:45:05 +0000 (11:45 +0200)] 
Merge branch 'unstable' of github.com:antirez/redis into unstable

14 years agoPrint version info before running the test
antirez [Fri, 20 May 2011 09:44:09 +0000 (11:44 +0200)] 
Print version info before running the test

14 years agoNon-blocking connect with master
Pieter Noordhuis [Thu, 19 May 2011 16:53:06 +0000 (18:53 +0200)] 
Non-blocking connect with master

14 years agoFix for ZUNIONSTORE bug when there is an empty set among input sets. Regression test...
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.

14 years agoFix for ZUNIONSTORE bug when there is an empty set among input sets. Regression test...
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.

14 years agofmacros in utils.c to avoid warning about strcasecmp()
antirez [Mon, 16 May 2011 15:20:27 +0000 (17:20 +0200)] 
fmacros in utils.c to avoid warning about strcasecmp()

14 years agoMerge branch 'unstable'
antirez [Mon, 16 May 2011 08:04:09 +0000 (10:04 +0200)] 
Merge branch 'unstable'

14 years agoFixed misuse of the new iterator semantics in ZUNIONSTORE
antirez [Sun, 15 May 2011 15:28:06 +0000 (17:28 +0200)] 
Fixed misuse of the new iterator semantics in ZUNIONSTORE

14 years agoFix for a possible bug related to ZINTER/UNIONSTORE called with the same source set...
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.

14 years agoFixed SINTER[STORE] problem related to the new copy on write safe iterator
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

14 years agoreplication with expire test modified to produce no or less false failures
antirez [Thu, 12 May 2011 18:15:13 +0000 (20:15 +0200)] 
replication with expire test modified to produce no or less false failures

14 years agoMerge branch 'unstable' of github.com:antirez/redis into unstable
antirez [Thu, 12 May 2011 18:21:00 +0000 (20:21 +0200)] 
Merge branch 'unstable' of github.com:antirez/redis into unstable

14 years agoZINTERSTORE regressiont test with two sets, intset+hashtable
antirez [Thu, 12 May 2011 18:20:25 +0000 (20:20 +0200)] 
ZINTERSTORE regressiont test with two sets, intset+hashtable

14 years agoremoved assert causing an illegal memory access. This was responsible of crashes...
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.

14 years agoMerge branch 'unstable'
antirez [Tue, 10 May 2011 12:05:59 +0000 (14:05 +0200)] 
Merge branch 'unstable'