]> git.saurik.com Git - redis.git/log
redis.git
15 years agoAdd support for domain sockets to redis-cli
Pieter Noordhuis [Sun, 1 Aug 2010 21:06:00 +0000 (23:06 +0200)] 
Add support for domain sockets to redis-cli

15 years agoSupport for Redis to listen on a Unix socket
Pieter Noordhuis [Sun, 1 Aug 2010 20:55:24 +0000 (22:55 +0200)] 
Support for Redis to listen on a Unix socket

15 years agoFix assertion function on value encoding
Pieter Noordhuis [Sun, 1 Aug 2010 09:20:26 +0000 (11:20 +0200)] 
Fix assertion function on value encoding

15 years agoMerge remote branch 'pietern/list-test'
antirez [Sat, 31 Jul 2010 11:55:06 +0000 (13:55 +0200)] 
Merge remote branch 'pietern/list-test'

15 years agoChange getDoubleFromObject to fail on NaN.
Pieter Noordhuis [Thu, 29 Jul 2010 20:13:31 +0000 (22:13 +0200)] 
Change getDoubleFromObject to fail on NaN.

Return an error when the resulting value is not a number (NaN). Fix
ZUNIONSTORE/ZINTERSTORE to clean up when a weight argument is not a
double value.

15 years agoFix ZUNIONSTORE/ZINTERSTORE to never store a NaN score.
Pieter Noordhuis [Thu, 29 Jul 2010 19:31:58 +0000 (21:31 +0200)] 
Fix ZUNIONSTORE/ZINTERSTORE to never store a NaN score.

When +inf and -inf are added, the result is NaN. We don't want NaN
scores in a sorted set, so agreed on the result of this operation being
zero.

15 years agoUse a large value to consistently trigger a list encoding,
Pieter Noordhuis [Thu, 29 Jul 2010 11:53:52 +0000 (13:53 +0200)] 
Use a large value to consistently trigger a list encoding,
even when the list is swapped out and in again.

15 years agoensure the value is swapped in before testing its encoding
Pieter Noordhuis [Thu, 29 Jul 2010 11:31:24 +0000 (13:31 +0200)] 
ensure the value is swapped in before testing its encoding

15 years agofix of the fix for the replication bug
antirez [Wed, 28 Jul 2010 16:56:52 +0000 (18:56 +0200)] 
fix of the fix for the replication bug

15 years agoFixed a replication bug in ZINTERSTORE.
antirez [Wed, 28 Jul 2010 16:42:02 +0000 (18:42 +0200)] 
Fixed a replication bug in ZINTERSTORE.

In order to trigger the bug what's needed is to call ZINTERSTORE
resulting into an empty set created, bug against a key that already
existed. The command was not propagated, so the replica ended with the
key that the master removed. Sequence of command to reproduce:

redis-cli hset 446 34 905
redis-cli hset 446 393 911
redis-cli zadd 966 0.085412045980529885 652
redis-cli zadd 645 0.25081839284432045 280
redis-cli zinterstore 446 2 966 645

15 years agobetter random dataset creation function in test. master-slave replication test now...
antirez [Wed, 28 Jul 2010 12:08:46 +0000 (14:08 +0200)] 
better random dataset creation function in test. master-slave replication test now is able to save the two datasets in CSV when an inconsistency is detected.

15 years agofixed a ziplist bug about encoding of integer values overflowing 64 bit
antirez [Tue, 27 Jul 2010 13:26:08 +0000 (15:26 +0200)] 
fixed a ziplist bug about encoding of integer values overflowing 64 bit

15 years agoremoved test code having bad effects...
antirez [Tue, 27 Jul 2010 12:46:39 +0000 (14:46 +0200)] 
removed test code having bad effects...

15 years agoConsistency test improved
antirez [Tue, 27 Jul 2010 12:42:11 +0000 (14:42 +0200)] 
Consistency test improved

15 years agomalloc definition with deprecated attribute was duplicated, one removed
antirez [Tue, 27 Jul 2010 12:30:02 +0000 (14:30 +0200)] 
malloc definition with deprecated attribute was duplicated, one removed

15 years agoSTRLEN command implemented
antirez [Tue, 27 Jul 2010 08:09:26 +0000 (10:09 +0200)] 
STRLEN command implemented

15 years agohash table example commented out in dict.c
antirez [Tue, 27 Jul 2010 08:00:38 +0000 (10:00 +0200)] 
hash table example commented out in dict.c

15 years agouse the function deprecated attribute if compiling with GCC to get warnings for mallo...
antirez [Tue, 27 Jul 2010 07:36:42 +0000 (09:36 +0200)] 
use the function deprecated attribute if compiling with GCC to get warnings for malloc/free usages. We always want to use our zmalloc/zfree versions for memory usage tracking

15 years agoAdd zcalloc and use it where appropriate
Benjamin Kramer [Sat, 24 Jul 2010 21:20:00 +0000 (23:20 +0200)] 
Add zcalloc and use it where appropriate

calloc is more effecient than malloc+memset when the system uses mmap to
allocate memory. mmap always returns zeroed memory so the memset can be
avoided.  The threshold to use mmap is 16k in osx libc and 128k in bsd
libc and glibc. The kernel can lazily allocate the pages, this reduces
memory usage when we have a page table or hash table that is mostly
empty.

This change is most visible when you start a new redis instance with vm
enabled.  You'll see no increased memory usage no matter how big your
page table is.

15 years agoRemove _dictAlloc and friends
Benjamin Kramer [Sat, 24 Jul 2010 21:10:42 +0000 (23:10 +0200)] 
Remove _dictAlloc and friends

zmalloc calls abort() so _dictPanic will never be called.

15 years agoReduce code duplication
Benjamin Kramer [Sat, 24 Jul 2010 20:37:01 +0000 (22:37 +0200)] 
Reduce code duplication

15 years agoexit with non-zero status when there are failed tests
Pieter Noordhuis [Fri, 23 Jul 2010 11:08:35 +0000 (13:08 +0200)] 
exit with non-zero status when there are failed tests

15 years agodon't open/close log file if log level is not matched
antirez [Thu, 22 Jul 2010 21:31:40 +0000 (23:31 +0200)] 
don't open/close log file if log level is not matched

15 years agofix rare condition where 'key' would already be destroyed while is was needed later on
Pieter Noordhuis [Thu, 22 Jul 2010 14:06:27 +0000 (16:06 +0200)] 
fix rare condition where 'key' would already be destroyed while is was needed later on

15 years agodefensive programming: set o->ptr to NULL before freeing objects
antirez [Thu, 22 Jul 2010 13:48:57 +0000 (15:48 +0200)] 
defensive programming: set o->ptr to NULL before freeing objects

15 years agoother shared objects where created in the I/O thread in createStringObjectFromLongLon...
antirez [Thu, 22 Jul 2010 12:48:45 +0000 (14:48 +0200)] 
other shared objects where created in the I/O thread in createStringObjectFromLongLong. Fixed as well.

15 years agominor typo fixed in a comment
antirez [Thu, 22 Jul 2010 11:12:24 +0000 (13:12 +0200)] 
minor typo fixed in a comment

15 years agodon't use object sharing inside I/O threads, as a fix for a well known instability...
antirez [Thu, 22 Jul 2010 11:08:02 +0000 (13:08 +0200)] 
don't use object sharing inside I/O threads, as a fix for a well known instability of VM introduced with the new object sharing code

15 years agovm_blocked_clients count fixed in INFO, thanks to Pietern Noordhuis
antirez [Wed, 21 Jul 2010 11:16:26 +0000 (13:16 +0200)] 
vm_blocked_clients count fixed in INFO, thanks to Pietern Noordhuis

15 years agoTODO list modified, trivial change to source code
antirez [Fri, 16 Jul 2010 21:56:18 +0000 (23:56 +0200)] 
TODO list modified, trivial change to source code

15 years agoWATCH is now affected only when write commands actually modify the key content
antirez [Mon, 12 Jul 2010 10:01:15 +0000 (12:01 +0200)] 
WATCH is now affected only when write commands actually modify the key content

15 years agofmacro included in linenoise.c
antirez [Fri, 9 Jul 2010 08:51:41 +0000 (10:51 +0200)] 
fmacro included in linenoise.c

15 years agoredis-cli history saved across sessions
antirez [Wed, 7 Jul 2010 16:44:53 +0000 (18:44 +0200)] 
redis-cli history saved across sessions

15 years agoredis-cli is now able to report version information using -v
antirez [Tue, 6 Jul 2010 17:17:09 +0000 (19:17 +0200)] 
redis-cli is now able to report version information using -v

15 years agoMake install fixed using a dummy taget
antirez [Tue, 6 Jul 2010 17:10:20 +0000 (19:10 +0200)] 
Make install fixed using a dummy taget

15 years agomake install target, finally ;)
antirez [Tue, 6 Jul 2010 17:07:16 +0000 (19:07 +0200)] 
make install target, finally ;)

15 years agotop level Makefile added, so you do not need to cd src
antirez [Tue, 6 Jul 2010 16:54:54 +0000 (18:54 +0200)] 
top level Makefile added, so you do not need to cd src

15 years agoimproved random dataset creation in test: del, sunionstore, zunionstore
antirez [Tue, 6 Jul 2010 16:30:38 +0000 (18:30 +0200)] 
improved random dataset creation in test: del, sunionstore, zunionstore

15 years agoFirst implementation of a replication consistency test
antirez [Tue, 6 Jul 2010 15:24:00 +0000 (17:24 +0200)] 
First implementation of a replication consistency test

15 years agomerged code from 184d74ab, 4774a53b, f483ce5f to new file structure
Pieter Noordhuis [Mon, 5 Jul 2010 19:16:33 +0000 (15:16 -0400)] 
merged code from 184d74ab4774a53bf483ce5f to new file structure

15 years agoINSTALL file added BETATESTING.txt removed
antirez [Mon, 5 Jul 2010 18:37:20 +0000 (20:37 +0200)] 
INSTALL file added BETATESTING.txt removed

15 years agoFixed compilation on *BSD systems
antirez [Mon, 5 Jul 2010 18:14:48 +0000 (20:14 +0200)] 
Fixed compilation on *BSD systems

15 years agoFixed a crash loading the AOF file containing MULTI/EXEC, a result of WATCH implement...
antirez [Mon, 5 Jul 2010 18:06:54 +0000 (20:06 +0200)] 
Fixed a crash loading the AOF file containing MULTI/EXEC, a result of WATCH implementation. Test needed...

15 years agoWATCH will now consider touched keys target of EXPIRE command after the WATCH is...
antirez [Mon, 5 Jul 2010 17:38:12 +0000 (19:38 +0200)] 
WATCH will now consider touched keys target of EXPIRE command after the WATCH is performed, but not before

15 years agofix aof and digest code to work with dual set encoding
Pieter Noordhuis [Fri, 2 Jul 2010 18:42:20 +0000 (20:42 +0200)] 
fix aof and digest code to work with dual set encoding

15 years agomerged intset code into the split files
Pieter Noordhuis [Fri, 2 Jul 2010 17:57:12 +0000 (19:57 +0200)] 
merged intset code into the split files

15 years agoCompilation fixed on Linux after the source code split
antirez [Thu, 1 Jul 2010 19:13:38 +0000 (21:13 +0200)] 
Compilation fixed on Linux after the source code split

15 years agoFixed MONITOR output for consistency: now integer encoded values are also formatted...
antirez [Thu, 1 Jul 2010 18:22:46 +0000 (20:22 +0200)] 
Fixed MONITOR output for consistency: now integer encoded values are also formatted like this: "3932"

15 years agoFix the AOF fix of the latest commit ;)
antirez [Thu, 1 Jul 2010 18:18:48 +0000 (20:18 +0200)] 
Fix the AOF fix of the latest commit ;)

15 years agofixed error code checking for *write operations and return value in AOF rewriting...
antirez [Thu, 1 Jul 2010 18:13:33 +0000 (20:13 +0200)] 
fixed error code checking for *write operations and return value in AOF rewriting function

15 years agoMerged with split
antirez [Thu, 1 Jul 2010 14:55:12 +0000 (16:55 +0200)] 
Merged with split

15 years agominor aesthetic change
antirez [Thu, 1 Jul 2010 13:14:25 +0000 (15:14 +0200)] 
minor aesthetic change

15 years agoTODO updated
antirez [Thu, 1 Jul 2010 12:52:01 +0000 (14:52 +0200)] 
TODO updated

15 years agoVersion is now 2.1.2
antirez [Thu, 1 Jul 2010 12:47:26 +0000 (14:47 +0200)] 
Version is now 2.1.2

15 years agoMake log target fixed
antirez [Thu, 1 Jul 2010 12:45:37 +0000 (14:45 +0200)] 
Make log target fixed

15 years agogitignore modified
antirez [Thu, 1 Jul 2010 12:41:03 +0000 (14:41 +0200)] 
gitignore modified

15 years agoredis.c split into many different C files.
antirez [Mon, 21 Jun 2010 22:07:48 +0000 (00:07 +0200)] 
redis.c split into many different C files.

networking related stuff moved into networking.c

moved more code

more work on layout of source code

SDS instantaneuos memory saving. By Pieter and Salvatore at VMware ;)

cleanly compiling again after the first split, now splitting it in more C files

moving more things around... work in progress

split replication code

splitting more

Sets split

Hash split

replication split

even more splitting

more splitting

minor change

15 years agoMerge remote branch 'pietern/zfixes'
antirez [Thu, 24 Jun 2010 22:23:38 +0000 (00:23 +0200)] 
Merge remote branch 'pietern/zfixes'

15 years agofix unexpected behavior on an out of range end index for LRANGE and LTRIM
Pieter Noordhuis [Thu, 24 Jun 2010 22:12:42 +0000 (15:12 -0700)] 
fix unexpected behavior on an out of range end index for LRANGE and LTRIM

15 years agomore pub/sub tests
Pieter Noordhuis [Wed, 16 Jun 2010 09:03:23 +0000 (11:03 +0200)] 
more pub/sub tests

15 years agoinitial basic pub/sub tests
Pieter Noordhuis [Tue, 15 Jun 2010 20:40:21 +0000 (22:40 +0200)] 
initial basic pub/sub tests

15 years agofix BLPOP/BRPOP to use the wrapped function for list length
Pieter Noordhuis [Tue, 15 Jun 2010 19:16:56 +0000 (21:16 +0200)] 
fix BLPOP/BRPOP to use the wrapped function for list length

15 years agotests for BLPOP/BRPOP via an option in the tcl client that defers reading the reply
Pieter Noordhuis [Tue, 15 Jun 2010 19:16:27 +0000 (21:16 +0200)] 
tests for BLPOP/BRPOP via an option in the tcl client that defers reading the reply

15 years agofix behavior for out-of-range negative end index on ZREMRANGEBYRANK
Pieter Noordhuis [Tue, 15 Jun 2010 14:21:42 +0000 (16:21 +0200)] 
fix behavior for out-of-range negative end index on ZREMRANGEBYRANK

15 years agomore tests for zrange and zrevrange; fix behavior for out-of-range negative end index
Pieter Noordhuis [Tue, 15 Jun 2010 13:40:28 +0000 (15:40 +0200)] 
more tests for zrange and zrevrange; fix behavior for out-of-range negative end index

15 years agoTODO updated
antirez [Mon, 14 Jun 2010 15:59:03 +0000 (17:59 +0200)] 
TODO updated

15 years agoMerge branch 'ltrim-tests' of git://github.com/pietern/redis
antirez [Mon, 14 Jun 2010 08:22:38 +0000 (10:22 +0200)] 
Merge branch 'ltrim-tests' of git://github.com/pietern/redis

15 years agorename "list" to "linkedlist" to be more verbose
Pieter Noordhuis [Mon, 14 Jun 2010 08:21:23 +0000 (10:21 +0200)] 
rename "list" to "linkedlist" to be more verbose

15 years agoallow running the test suite against an external Redis instance, without auto spawning
antirez [Mon, 14 Jun 2010 08:19:45 +0000 (10:19 +0200)] 
allow running the test suite against an external Redis instance, without auto spawning

15 years agochange ltrim tests to cover all min/max cases and add stronger stresser
Pieter Noordhuis [Mon, 14 Jun 2010 07:45:34 +0000 (09:45 +0200)] 
change ltrim tests to cover all min/max cases and add stronger stresser

15 years agoFixed deps in makefile and mkreleasehdr.sh script to really take advantage of the...
antirez [Sun, 13 Jun 2010 21:51:43 +0000 (23:51 +0200)] 
Fixed deps in makefile and mkreleasehdr.sh script to really take advantage of the new trick to avoid recompilation of redis.c on git sha1 or dirty status change

15 years agohopefully faster recompiling with a trick
antirez [Sun, 13 Jun 2010 21:45:14 +0000 (23:45 +0200)] 
hopefully faster recompiling with a trick

15 years agoexpand the dictionary of the target set to the right size when converting from intset
Pieter Noordhuis [Sun, 13 Jun 2010 19:52:07 +0000 (21:52 +0200)] 
expand the dictionary of the target set to the right size when converting from intset

15 years agomake sure sets have the right encoding when loaded from rdb
Pieter Noordhuis [Sun, 13 Jun 2010 19:42:04 +0000 (21:42 +0200)] 
make sure sets have the right encoding when loaded from rdb

15 years agouse max number of intset entries in tests and make SUNION/SINTER/SDIFF tests use...
Pieter Noordhuis [Sun, 13 Jun 2010 19:23:43 +0000 (21:23 +0200)] 
use max number of intset entries in tests and make SUNION/SINTER/SDIFF tests use less entries

15 years agofixed a bug in rdbLoadObject abount specially encoded objects
antirez [Sun, 13 Jun 2010 19:09:51 +0000 (21:09 +0200)] 
fixed a bug in rdbLoadObject abount specially encoded objects

15 years agoconfigure maximum number of entries in an intset
Pieter Noordhuis [Sun, 13 Jun 2010 13:21:25 +0000 (15:21 +0200)] 
configure maximum number of entries in an intset

15 years agouse raw strings when loading a hash from the rdb into a zipmap
Pieter Noordhuis [Sun, 13 Jun 2010 13:07:53 +0000 (15:07 +0200)] 
use raw strings when loading a hash from the rdb into a zipmap

15 years agosmall refactor of SMOVE and tests for SMOVE on sets with different encoding
Pieter Noordhuis [Sun, 13 Jun 2010 09:16:18 +0000 (11:16 +0200)] 
small refactor of SMOVE and tests for SMOVE on sets with different encoding

15 years agointset encoding for sets, refactored set tests to test both encodings
Pieter Noordhuis [Sat, 12 Jun 2010 20:25:22 +0000 (22:25 +0200)] 
intset encoding for sets, refactored set tests to test both encodings

15 years agoMerge branch 'expire' of git://github.com/pietern/redis
antirez [Sat, 12 Jun 2010 14:26:04 +0000 (16:26 +0200)] 
Merge branch 'expire' of git://github.com/pietern/redis

15 years agoMerge branch 'lists' of git://github.com/pietern/redis
antirez [Fri, 11 Jun 2010 18:27:56 +0000 (20:27 +0200)] 
Merge branch 'lists' of git://github.com/pietern/redis

15 years agointset housekeeping
Pieter Noordhuis [Fri, 11 Jun 2010 17:22:27 +0000 (19:22 +0200)] 
intset housekeeping

15 years agowrapper functions for the set type to support multiple encodings
Pieter Noordhuis [Fri, 11 Jun 2010 16:35:57 +0000 (18:35 +0200)] 
wrapper functions for the set type to support multiple encodings

15 years agoLPUSHX, RPUSHX, LINSERT only work on non-empty lists, so there are no clients waiting...
Pieter Noordhuis [Fri, 11 Jun 2010 15:35:48 +0000 (17:35 +0200)] 
LPUSHX, RPUSHX, LINSERT only work on non-empty lists, so there are no clients waiting for a push

15 years agomake LINSERT return -1 when the value could not be inserted
Pieter Noordhuis [Fri, 11 Jun 2010 15:34:23 +0000 (17:34 +0200)] 
make LINSERT return -1 when the value could not be inserted

15 years agomove logic for obvious corner cases to intsetSearch
Pieter Noordhuis [Thu, 3 Jun 2010 20:21:39 +0000 (22:21 +0200)] 
move logic for obvious corner cases to intsetSearch

15 years agoinitial implementation for the intset
Pieter Noordhuis [Thu, 3 Jun 2010 14:06:18 +0000 (16:06 +0200)] 
initial implementation for the intset

15 years agocheck if the list encoding needs to be changed on LPUSHX, RPUSHX, LINSERT
Pieter Noordhuis [Fri, 11 Jun 2010 12:51:59 +0000 (14:51 +0200)] 
check if the list encoding needs to be changed on LPUSHX, RPUSHX, LINSERT

15 years agomake sure the value to insert is string encoded
Pieter Noordhuis [Fri, 11 Jun 2010 11:27:21 +0000 (13:27 +0200)] 
make sure the value to insert is string encoded

15 years agorename vars, move arguments, add comments
Pieter Noordhuis [Fri, 11 Jun 2010 11:06:03 +0000 (13:06 +0200)] 
rename vars, move arguments, add comments

15 years agoalways iterate from head to tail on LINSERT
Pieter Noordhuis [Fri, 11 Jun 2010 10:03:15 +0000 (12:03 +0200)] 
always iterate from head to tail on LINSERT

15 years agouse REDIS_TAIL to insert AFTER an entry and REDIS_HEAD to insert BEFORE an entry
Pieter Noordhuis [Fri, 11 Jun 2010 09:53:16 +0000 (11:53 +0200)] 
use REDIS_TAIL to insert AFTER an entry and REDIS_HEAD to insert BEFORE an entry

15 years agomove listTypeInsert to be grouped with other wrapper functions
Pieter Noordhuis [Fri, 11 Jun 2010 08:52:09 +0000 (10:52 +0200)] 
move listTypeInsert to be grouped with other wrapper functions

15 years agosquashed merge from robey/twitter3: LINSERT BEFORE|AFTER, LPUSHX, RPUSHX
Robey Pointer [Fri, 11 Jun 2010 08:08:59 +0000 (10:08 +0200)] 
squashed merge from robey/twitter3: LINSERT BEFORE|AFTER, LPUSHX, RPUSHX

15 years agoremove pop function and the sds dependency; can be implemented using get+delete
Pieter Noordhuis [Wed, 9 Jun 2010 09:36:58 +0000 (11:36 +0200)] 
remove pop function and the sds dependency; can be implemented using get+delete

15 years agocompute swappability for ziplist encoded lists
Pieter Noordhuis [Mon, 7 Jun 2010 19:53:21 +0000 (21:53 +0200)] 
compute swappability for ziplist encoded lists

15 years agoreuse the sds from the main dictionary in the expiration dictionary
Pieter Noordhuis [Mon, 7 Jun 2010 18:44:12 +0000 (20:44 +0200)] 
reuse the sds from the main dictionary in the expiration dictionary

15 years agoTODO updated
antirez [Mon, 7 Jun 2010 16:30:18 +0000 (18:30 +0200)] 
TODO updated

15 years agoencode integers while loading an hash
antirez [Mon, 7 Jun 2010 16:07:46 +0000 (18:07 +0200)] 
encode integers while loading an hash