- 06 Aug, 2013 2 commits
- 20 Dec, 2012 1 commit
-
-
antirez authored
The problem does not exist in the Redis server implementation of mstime() but is only limited to redis-cli and redis-benchmark. Thix fixes issue #839.
-
- 30 Nov, 2012 1 commit
-
-
antirez authored
-
- 08 Nov, 2012 1 commit
-
-
antirez authored
-
- 10 Oct, 2012 1 commit
-
-
NanXiao authored
The code of current implementation: if (c->pending == 0) clientDone(c); In clientDone function, the c's memory has been freed, then the loop will continue: while(c->pending). The memory of c has been freed now, so c->pending is invalid (c is an invalid pointer now), and this will cause memory dump in some platforams(eg: Solaris). So I think the code should be modified as: if (c->pending == 0) { clientDone(c); break; } and this will not lead to while(c->pending).
-
- 21 Aug, 2012 1 commit
-
-
antirez authored
This new hiredis features allows us to reuse a previous context reader buffer even if already very big in order to maximize performances with big payloads (Usually hiredis re-creates buffers when they are too big and unused in order to save memory).
-
- 26 Feb, 2012 1 commit
-
-
Premysl Hruby authored
-
- 23 Feb, 2012 2 commits
- 19 Feb, 2012 1 commit
-
-
antirez authored
-
- 31 Jan, 2012 1 commit
-
-
antirez authored
-
- 15 Dec, 2011 1 commit
-
-
antirez authored
-
- 07 Nov, 2011 1 commit
-
-
antirez authored
-
- 04 Nov, 2011 2 commits
- 03 Nov, 2011 1 commit
-
-
antirez authored
further optimizations for the multi bulk protocol parsing code when big objects are transmitted to Redis.
-
- 16 Sep, 2011 1 commit
-
-
Pieter Noordhuis authored
-
- 01 Jun, 2011 3 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 24 Jan, 2011 1 commit
-
-
antirez authored
-
- 23 Dec, 2010 2 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 22 Dec, 2010 2 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 18 Dec, 2010 2 commits
-
-
Didier Spezia authored
-
Pieter Noordhuis authored
-
- 16 Dec, 2010 2 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 05 Nov, 2010 1 commit
-
-
Pieter Noordhuis authored
-
- 04 Nov, 2010 2 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 15 Oct, 2010 2 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 30 Aug, 2010 2 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 01 Aug, 2010 1 commit
-
-
Pieter Noordhuis authored
-
- 01 Jul, 2010 1 commit
-
-
antirez authored
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
-
- 04 Mar, 2010 1 commit
-
-
antirez authored
-