- 11 Feb, 2013 1 commit
-
-
antirez authored
-
- 09 Feb, 2013 1 commit
-
-
antirez authored
-
- 08 Feb, 2013 5 commits
- 07 Feb, 2013 1 commit
-
-
antirez authored
-
- 05 Feb, 2013 6 commits
-
-
antirez authored
-
charsyam authored
Further details from @antirez: It was reported by @StopForumSpam on Twitter that the Redis replication link was strangely using multiple TCP packets for multiple commands. This wastes a lot of bandwidth and is due to the TCP_NODELAY option we enable on the socket after accepting a new connection. However the master -> slave channel is a one-way channel since Redis replication is asynchronous, so there is no point in trying to reduce the latency, we should aim to reduce the bandwidth. For this reason this commit introduces the ability to disable the nagle algorithm on the socket after a successful SYNC. This feature is off by default because the delay can be up to 40 milliseconds with normally configured Linux kernels.
-
antirez authored
-
Salvatore Sanfilippo authored
Make redis test suite tcl version agnostic, v2
-
Salvatore Sanfilippo authored
retval doesn't initalized
-
Rock Li authored
If each if conditions are all fail, variable retval will under uninitlized
-
- 04 Feb, 2013 3 commits
-
-
Salvatore Sanfilippo authored
Fix a few typos and improve grammar of redis.conf
-
Salvatore Sanfilippo authored
Fix a bug in srandmemberWithCountCommand()
-
Gengliang Wang authored
In CASE 2, the call sunionDiffGenericCommand will involve the string "srandmember" > sadd foo one (integer 1) > sadd srandmember two (integer 2) > srandmember foo 3 1)"one" 2)"two"
-
- 03 Feb, 2013 1 commit
-
-
David Celis authored
Make several edits to the example redis.conf configuration file for improved flow and grammar. Signed-off-by:
David Celis <me@davidcel.is>
-
- 31 Jan, 2013 2 commits
-
-
antirez authored
-
Salvatore Sanfilippo authored
fix comments forgotten in #285 (zipmap -> ziplist)
-
- 29 Jan, 2013 2 commits
- 28 Jan, 2013 14 commits
-
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
When keyspace events are enabled, the overhead is not sever but noticeable, so this commit introduces the ability to select subclasses of events in order to avoid to generate events the user is not interested in. The events can be selected using redis.conf or CONFIG SET / GET.
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
decrRefCount used to get its argument as a void* pointer in order to be used as destructor where a 'void free_object(void*)' prototype is expected. However this made simpler to introduce bugs by freeing the wrong pointer. This commit fixes the argument type and introduces a new wrapper called decrRefCountVoid() that can be used when the void* argument is needed.
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
Pierre Chapuis authored
-
- 23 Jan, 2013 4 commits
-
-
Johan Bergström authored
-
Johan Bergström authored
-
Johan Bergström authored
-
antirez authored
There was a bug in the previous version of this library that caused a crash under the circumstances described in issue #901. The newer version of the library appears to be fixed (I tested it manually with valgrind and everything seems fine now). For more information about this library please visit this web site: http://www.inf.puc-rio.br/~roberto/struct/
-