]> git.saurik.com Git - redis.git/log
redis.git
15 years agoMSET fixed, was not able to replace keys already set for a stupid bug
antirez [Sat, 17 Oct 2009 20:02:59 +0000 (22:02 +0200)] 
MSET fixed, was not able to replace keys already set for a stupid bug

15 years agosome dead code removed
antirez [Fri, 16 Oct 2009 21:40:47 +0000 (23:40 +0200)] 
some dead code removed

15 years agomulti bulk input protocol fixed
antirez [Fri, 16 Oct 2009 21:36:33 +0000 (23:36 +0200)] 
multi bulk input protocol fixed

15 years agoMSET and MSETNX commands implemented
antirez [Fri, 16 Oct 2009 11:44:25 +0000 (13:44 +0200)] 
MSET and MSETNX commands implemented

15 years agoundoed all the sds hacking that lead just to random bugs and no memory saving ;)
antirez [Wed, 7 Oct 2009 15:34:00 +0000 (17:34 +0200)] 
undoed all the sds hacking that lead just to random bugs and no memory saving ;)

15 years agoinitial multi-bulk query protocol, this will allow MSET and other interesting features.
antirez [Wed, 7 Oct 2009 11:30:15 +0000 (13:30 +0200)] 
initial multi-bulk query protocol, this will allow MSET and other interesting features.

15 years agobenchmark now outputs the right command line to shorten the TIME_WAIT interval on...
antirez [Sat, 3 Oct 2009 08:54:27 +0000 (10:54 +0200)] 
benchmark now outputs the right command line to shorten the TIME_WAIT interval on Mac OS X when keep alive is set

15 years agoIssue 69 fixed. Object integer encoding now works with replication and MONITORing...
antirez [Fri, 2 Oct 2009 08:23:25 +0000 (10:23 +0200)] 
Issue 69 fixed. Object integer encoding now works with replication and MONITORing again.

15 years agoLREM fixed, used to crash since the new object integer encoding is on the stage
antirez [Fri, 18 Sep 2009 18:31:47 +0000 (20:31 +0200)] 
LREM fixed, used to crash since the new object integer encoding is on the stage

15 years agomaxmemory didn't worked in 64 systems for values > 4GB since it used to be an unsigne...
antirez [Thu, 17 Sep 2009 15:23:59 +0000 (17:23 +0200)] 
maxmemory didn't worked in 64 systems for values > 4GB since it used to be an unsigned int. Fixed

15 years agoincremented version number to 1.001, AKA Redis edge is no longer stable...
antirez [Thu, 10 Sep 2009 15:46:21 +0000 (17:46 +0200)] 
incremented version number to 1.001, AKA Redis edge is no longer stable...

15 years agoin-memory specialized object encoding (for now 32 signed integers only)
antirez [Thu, 10 Sep 2009 15:45:30 +0000 (17:45 +0200)] 
in-memory specialized object encoding (for now 32 signed integers only)

15 years agoLatest doc changes for 1.0
antirez [Thu, 3 Sep 2009 08:42:47 +0000 (10:42 +0200)] 
Latest doc changes for 1.0

15 years agoRedis 1.0.0 release
antirez [Thu, 3 Sep 2009 08:38:15 +0000 (10:38 +0200)] 
Redis 1.0.0 release

15 years agoRedis version pushed to 1.0
antirez [Wed, 2 Sep 2009 09:37:01 +0000 (11:37 +0200)] 
Redis version pushed to 1.0

15 years agoRuby client lib updated to the latest git version
antirez [Wed, 2 Sep 2009 08:37:32 +0000 (10:37 +0200)] 
Ruby client lib updated to the latest git version

15 years agoupdate-scala-client script added
antirez [Wed, 2 Sep 2009 08:36:03 +0000 (10:36 +0200)] 
update-scala-client script added

15 years agoScala client added thanks to Alejanro Crosa
antirez [Wed, 2 Sep 2009 08:34:27 +0000 (10:34 +0200)] 
Scala client added thanks to Alejanro Crosa

15 years agoQuickStart added
antirez [Wed, 2 Sep 2009 08:29:58 +0000 (10:29 +0200)] 
QuickStart added

15 years agoFixed crash with only space and newline as command (issue 61), thanks to a guy having...
antirez [Tue, 1 Sep 2009 14:30:52 +0000 (16:30 +0200)] 
Fixed crash with only space and newline as command (issue 61), thanks to a guy having as nick "fixxxerrr"

15 years agoTODO list modified
antirez [Tue, 11 Aug 2009 01:00:50 +0000 (03:00 +0200)] 
TODO list modified

15 years agomore snow leopard related fixes (for 32bit systems)
antirez [Fri, 24 Jul 2009 12:43:20 +0000 (14:43 +0200)] 
more snow leopard related fixes (for 32bit systems)

15 years agofixed compilation with Snow Leopard, thanks to Lon Baker for providing SSH access...
antirez [Fri, 24 Jul 2009 12:32:58 +0000 (14:32 +0200)] 
fixed compilation with Snow Leopard, thanks to Lon Baker for providing SSH access to Snow Leopard box

15 years agoFixed NetBSD compile problems
antirez [Wed, 22 Jul 2009 08:32:21 +0000 (10:32 +0200)] 
Fixed NetBSD compile problems

15 years agonow the size of the shared pool can be really modified via config, also the number...
antirez [Fri, 17 Jul 2009 09:56:56 +0000 (11:56 +0200)] 
now the size of the shared pool can be really modified via config, also the number of objects in the sharing pool is logged when the log level is set to debug. Thanks to Aman Gupta

15 years agoadded utils/redis-copy.rb, a script that is able to copy data from one Redis server...
antirez [Sun, 5 Jul 2009 10:56:59 +0000 (12:56 +0200)] 
added utils/redis-copy.rb, a script that is able to copy data from one Redis server to another one on the fly.

15 years agoApplied three different patches thanks to Chris Lamb, one to fix compilation and...
antirez [Sat, 4 Jul 2009 13:43:57 +0000 (15:43 +0200)] 
Applied three different patches thanks to Chris Lamb, one to fix compilation and get the IP register value on Linux IA64 and other systems. One in order to log the overcommit problem on the logs instead of the standard output when Redis is demonized. The latest in order to suggest a more consistent way in order to switch to 1 the memory overcommit Linux feature.

15 years agobugfix: EXPIRE now propagates to the Slave.
antirez [Fri, 3 Jul 2009 17:57:26 +0000 (19:57 +0200)] 
bugfix: EXPIRE now propagates to the Slave.

15 years agoRedis version modified to 0.900
antirez [Tue, 16 Jun 2009 15:33:58 +0000 (17:33 +0200)] 
Redis version modified to 0.900

15 years agoupdate-ruby-client script already points to ezmobius repo
antirez [Tue, 16 Jun 2009 14:46:33 +0000 (16:46 +0200)] 
update-ruby-client script already points to ezmobius repo

15 years agoclient libraries updated
antirez [Tue, 16 Jun 2009 14:45:04 +0000 (16:45 +0200)] 
client libraries updated

15 years agoRedis release candidate 1
antirez [Tue, 16 Jun 2009 14:42:53 +0000 (16:42 +0200)] 
Redis release candidate 1

15 years agoBetter handling of background saving process killed or crashed
antirez [Tue, 16 Jun 2009 14:42:20 +0000 (16:42 +0200)] 
Better handling of background saving process killed or crashed

15 years agonumber of keys info in INFO command thanks to Diego Rosario Brogna
antirez [Sun, 14 Jun 2009 21:34:25 +0000 (23:34 +0200)] 
number of keys info in INFO command thanks to Diego Rosario Brogna

15 years agoSPOP documented
antirez [Sun, 14 Jun 2009 21:22:09 +0000 (23:22 +0200)] 
SPOP documented

15 years agoClojure library thanks to Ragnar Dahlén
antirez [Sun, 14 Jun 2009 21:15:21 +0000 (23:15 +0200)] 
Clojure library thanks to Ragnar Dahlén

15 years agoIt is now possible to specify - as config file name to read it from stdin
antirez [Wed, 10 Jun 2009 12:40:11 +0000 (14:40 +0200)] 
It is now possible to specify - as config file name to read it from stdin

15 years agosync with jodosha redis-rb
antirez [Tue, 9 Jun 2009 22:11:17 +0000 (00:11 +0200)] 
sync with jodosha redis-rb

15 years agoRedis-rb sync
antirez [Tue, 9 Jun 2009 22:08:10 +0000 (00:08 +0200)] 
Redis-rb sync

15 years agomax inline request raised again to 1024*1024*256 bytes
antirez [Tue, 9 Jun 2009 22:03:53 +0000 (00:03 +0200)] 
max inline request raised again to 1024*1024*256 bytes

15 years agomax bytes in an inline command raised to 1024*1024 bytes, in order to allow for very...
antirez [Tue, 9 Jun 2009 22:02:08 +0000 (00:02 +0200)] 
max bytes in an inline command raised to 1024*1024 bytes, in order to allow for very large MGETs and still protect from client crashes

15 years agoSPOP implemented. Hash table resizing for Sets and Expires too. Changed the resize...
antirez [Mon, 8 Jun 2009 21:51:35 +0000 (23:51 +0200)] 
SPOP implemented. Hash table resizing for Sets and Expires too. Changed the resize policy to play better with RANDOMKEY and SPOP.

15 years agosome minor changes to the backtrace code
antirez [Sun, 7 Jun 2009 18:22:43 +0000 (20:22 +0200)] 
some minor changes to the backtrace code

15 years agoenable backtrace capabilities only for Linux and MacOSX
antirez [Sun, 7 Jun 2009 13:47:59 +0000 (15:47 +0200)] 
enable backtrace capabilities only for Linux and MacOSX

15 years agoDump a backtrace on sigsegv/sigbus, original coded thanks to Diego Rosario Brogna...
antirez [Sun, 7 Jun 2009 12:00:31 +0000 (14:00 +0200)] 
Dump a backtrace on sigsegv/sigbus, original coded thanks to Diego Rosario Brogna, modified in order to work on different OSes and to enhance reliability

15 years agoMerge git://github.com/dierbro/redis
antirez [Sat, 6 Jun 2009 21:40:48 +0000 (23:40 +0200)] 
Merge git://github.com/dierbro/redis

15 years agoadd more output
hrothgar [Sat, 6 Jun 2009 09:49:10 +0000 (09:49 +0000)] 
add more output

15 years agostore static function pointer for a useful stack trace
hrothgar [Sat, 6 Jun 2009 08:50:43 +0000 (08:50 +0000)] 
store static function pointer for a useful stack trace

15 years agoTODO updated
antirez [Sat, 6 Jun 2009 08:00:12 +0000 (10:00 +0200)] 
TODO updated

15 years agoMakefile dependencies updated
antirez [Sat, 6 Jun 2009 06:24:23 +0000 (08:24 +0200)] 
Makefile dependencies updated

15 years agoAvoid a busy loop while sending very large replies against very fast links, this...
antirez [Fri, 5 Jun 2009 21:44:26 +0000 (23:44 +0200)] 
Avoid a busy loop while sending very large replies against very fast links, this allows to be more responsive with other clients even under a KEY * against the loopback interface

15 years agoKill the background saving process before performing SHUTDOWN to avoid races
antirez [Fri, 5 Jun 2009 20:52:30 +0000 (22:52 +0200)] 
Kill the background saving process before performing SHUTDOWN to avoid races

15 years agoLREM now returns :0 for non existing keys
antirez [Fri, 5 Jun 2009 14:07:22 +0000 (16:07 +0200)] 
LREM now returns :0 for non existing keys

15 years ago- put some order in code
hrothgar [Fri, 5 Jun 2009 10:10:44 +0000 (10:10 +0000)] 
- put some order in code
- better output

15 years agoadded config.h for #ifdef business isolation, added fstat64 for Mac OS X
antirez [Fri, 5 Jun 2009 08:50:51 +0000 (10:50 +0200)] 
added config.h for #ifdef business isolation, added fstat64 for Mac OS X

15 years agoremove die() :-)
hrothgar [Thu, 4 Jun 2009 18:48:26 +0000 (18:48 +0000)] 
remove die() :-)

15 years agoadd compile options to debug
hrothgar [Thu, 4 Jun 2009 18:41:00 +0000 (18:41 +0000)] 
add compile options to debug

15 years agoinitial commit print stack trace
hrothgar [Thu, 4 Jun 2009 17:26:21 +0000 (17:26 +0000)] 
initial commit print stack trace

15 years agoinitial commit print stack trace
hrothgar [Thu, 4 Jun 2009 17:20:14 +0000 (17:20 +0000)] 
initial commit print stack trace

15 years agomacosx specific zmalloc.c, uses malloc_size function in order to avoid to waste memor...
antirez [Thu, 4 Jun 2009 16:50:54 +0000 (18:50 +0200)] 
macosx specific zmalloc.c, uses malloc_size function in order to avoid to waste memory and time to put an additional header

15 years agoDEBUG OBJECT implemented
antirez [Thu, 4 Jun 2009 15:13:33 +0000 (17:13 +0200)] 
DEBUG OBJECT implemented

15 years agobacktrace support removed: unreliable stack trace :(
antirez [Thu, 4 Jun 2009 14:50:24 +0000 (16:50 +0200)] 
backtrace support removed: unreliable stack trace :(

15 years agoinitial backtrace dumping on sigsegv/sigbus + debug command
antirez [Thu, 4 Jun 2009 14:45:57 +0000 (16:45 +0200)] 
initial backtrace dumping on sigsegv/sigbus + debug command

15 years agoPython lib updated
antirez [Wed, 3 Jun 2009 14:03:21 +0000 (16:03 +0200)] 
Python lib updated

15 years agoshareobjectspoolsize implemented in reds.conf, in order to control the pool size...
antirez [Wed, 3 Jun 2009 14:01:32 +0000 (16:01 +0200)] 
shareobjectspoolsize implemented in reds.conf, in order to control the pool size when object sharing is on

15 years agoErlang client updated
antirez [Sat, 30 May 2009 08:17:06 +0000 (10:17 +0200)] 
Erlang client updated

15 years agoPython client library updated
antirez [Sat, 30 May 2009 08:14:57 +0000 (10:14 +0200)] 
Python client library updated

15 years agoRedis-rb minor bool convertion fix
antirez [Fri, 29 May 2009 10:52:21 +0000 (12:52 +0200)] 
Redis-rb minor bool convertion fix

15 years agoruby library client is not Redis-rb merged with RubyRedis "engine" by Brian McKinney
antirez [Fri, 29 May 2009 10:28:37 +0000 (12:28 +0200)] 
ruby library client is not Redis-rb merged with RubyRedis "engine" by Brian McKinney

15 years ago__P completely removed from pqsort.c/h
antirez [Thu, 28 May 2009 16:31:02 +0000 (18:31 +0200)] 
__P completely removed from pqsort.c/h

15 years agoanother minor fix for Solaris boxes
antirez [Thu, 28 May 2009 16:28:55 +0000 (18:28 +0200)] 
another minor fix for Solaris boxes

15 years agominor fix for Solaris boxes
antirez [Thu, 28 May 2009 16:26:28 +0000 (18:26 +0200)] 
minor fix for Solaris boxes

15 years agominor fix for Solaris boxes
antirez [Thu, 28 May 2009 16:25:22 +0000 (18:25 +0200)] 
minor fix for Solaris boxes

15 years agomaxmemory implemented
antirez [Wed, 27 May 2009 20:53:20 +0000 (22:53 +0200)] 
maxmemory implemented

15 years agoRedis git version modified to 0.101 in order to distinguish that from the latest...
antirez [Tue, 26 May 2009 18:54:47 +0000 (20:54 +0200)] 
Redis git version modified to 0.101 in order to distinguish that from the latest tar.gz via INFO ;)

15 years agoRedis 0.100 released
antirez [Tue, 26 May 2009 16:13:40 +0000 (18:13 +0200)] 
Redis 0.100 released

15 years agoclient libraries synched in git
antirez [Tue, 26 May 2009 16:10:50 +0000 (18:10 +0200)] 
client libraries synched in git

15 years agoignore gcc warning about write() return code not checked. It is esplicitily this...
antirez [Tue, 26 May 2009 14:45:57 +0000 (16:45 +0200)] 
ignore gcc warning about write() return code not checked. It is esplicitily this way since the "max number of clients reached" is a best-effort error

15 years agomax bytes of a received command enlarged from 1k to 16k
antirez [Tue, 26 May 2009 14:35:18 +0000 (16:35 +0200)] 
max bytes of a received command enlarged from 1k to 16k

15 years agoRubyRedis: set TCP_NODELAY TCP socket option to to disable the neagle algorithm....
antirez [Mon, 25 May 2009 23:12:46 +0000 (01:12 +0200)] 
RubyRedis: set TCP_NODELAY TCP socket option to to disable the neagle algorithm. Makes a huge difference under some OS, notably Linux

15 years agomaxclients implemented, see redis.conf for details
antirez [Mon, 25 May 2009 21:29:18 +0000 (23:29 +0200)] 
maxclients implemented, see redis.conf for details

15 years agoINFO command now reports replication info
antirez [Mon, 25 May 2009 21:02:42 +0000 (23:02 +0200)] 
INFO command now reports replication info

15 years agominor fix to RubyRedis about bulk commands sent without arguments
antirez [Mon, 25 May 2009 19:30:20 +0000 (21:30 +0200)] 
minor fix to RubyRedis about bulk commands sent without arguments

15 years agoWarns if using the default config
antirez [Sun, 24 May 2009 07:21:35 +0000 (09:21 +0200)] 
Warns if using the default config

15 years agoIssue with redis-client used in scripts solved, now to check if the latest argument...
antirez [Sun, 24 May 2009 07:15:40 +0000 (09:15 +0200)] 
Issue with redis-client used in scripts solved, now to check if the latest argument must come from standard input we do not check that stdin is or not a tty but the command arity

15 years agoRubyRedis: now sets are returned as arrays again, and not as Set objects
antirez [Sat, 23 May 2009 09:33:21 +0000 (11:33 +0200)] 
RubyRedis: now sets are returned as arrays again, and not as Set objects

15 years agoSLAVEOF command documented
antirez [Sat, 23 May 2009 09:16:38 +0000 (11:16 +0200)] 
SLAVEOF command documented

15 years agoSLAVEOF command implemented for replication remote control
antirez [Sat, 23 May 2009 08:56:32 +0000 (10:56 +0200)] 
SLAVEOF command implemented for replication remote control

15 years agoFix: no connection timeout for the master!
antirez [Fri, 22 May 2009 19:56:00 +0000 (21:56 +0200)] 
Fix: no connection timeout for the master!

15 years agoreplication slave timeout when receiving the initial bulk data set to 3600 seconds...
antirez [Fri, 22 May 2009 18:55:09 +0000 (20:55 +0200)] 
replication slave timeout when receiving the initial bulk data set to 3600 seconds, now that replication is non-blocking the server must save the db before to start the async replication and this can take a lot of time with huge datasets

15 years agoREADME tutorial now reflects the new proto
antirez [Fri, 22 May 2009 16:44:44 +0000 (18:44 +0200)] 
README tutorial now reflects the new proto

15 years agocritical bug about glueoutputbuffers=yes fixed. Under load and with pipelining and...
antirez [Fri, 22 May 2009 16:35:51 +0000 (18:35 +0200)] 
critical bug about glueoutputbuffers=yes fixed. Under load and with pipelining and clients disconnecting on the middle of the chat with the server, Redis could block. Now it's ok

15 years agoTTL command doc added
antirez [Fri, 22 May 2009 14:08:20 +0000 (16:08 +0200)] 
TTL command doc added

15 years agoTTL command implemented
antirez [Fri, 22 May 2009 13:55:38 +0000 (15:55 +0200)] 
TTL command implemented

15 years agoS*STORE now return the cardinality of the resulting set
antirez [Fri, 22 May 2009 13:29:27 +0000 (15:29 +0200)] 
S*STORE now return the cardinality of the resulting set

15 years agorubyredis more compatible with Redis-rb
antirez [Fri, 22 May 2009 10:16:57 +0000 (12:16 +0200)] 
rubyredis more compatible with Redis-rb

15 years agominor indentation fix
antirez [Thu, 21 May 2009 19:18:31 +0000 (21:18 +0200)] 
minor indentation fix

15 years agotimeout support and Redis-rb compatibility aliases implemented in RubyRedis
antirez [Thu, 21 May 2009 19:03:41 +0000 (21:03 +0200)] 
timeout support and Redis-rb compatibility aliases implemented in RubyRedis

15 years agoRubyRedis info postprocessor rewritten in a more functional way
antirez [Thu, 21 May 2009 11:51:30 +0000 (13:51 +0200)] 
RubyRedis info postprocessor rewritten in a more functional way

15 years agodead code removed from RubyRedis
antirez [Thu, 21 May 2009 11:31:00 +0000 (13:31 +0200)] 
dead code removed from RubyRedis