redis/src
antirez 1dd10ca233 maxmemory fixed, we now try to release memory just before we check for the memory limit. Before fixing there was code between the attempt to free memory and the check for memory limits, and this code could result into allocations going again after the memory limit. 2010-10-11 13:05:09 +02:00
..
Makefile Fixed missed use of INSTALL_TOP 2010-09-13 16:50:57 +01:00
adlist.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
adlist.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
ae.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
ae.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
ae_epoll.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
ae_kqueue.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
ae_select.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
anet.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
anet.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
aof.c Merge remote branch 'pietern/networking-perf' 2010-09-16 11:38:40 +02:00
config.c Use specialized function to add status and error replies 2010-09-02 23:33:06 +02:00
config.h memory fragmentation reporting in INFO also added for Mac OS X 2010-09-02 10:57:58 +02:00
db.c fixed an alignment problem with time_t is 32 bit, long is 64 bit, and arch is sparc or any other where unaligned accesses will result to sigbus 2010-10-07 16:21:35 +02:00
debug.c Use specialized function to add status and error replies 2010-09-02 23:33:06 +02:00
dict.c This should fix Issue 332: when there is a background process saving we still allow the hash tables to grow, but only when a critical treshold is reached. Formerly we prevented the resize at all triggering pathological O(N) behavior. Also there is a fix for the statistics in INFO about the number of keys expired 2010-09-15 14:09:41 +02:00
dict.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
fmacros.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
intset.c Fix type that was not renamed and compiler warning 2010-08-26 12:13:51 +02:00
intset.h merged intset code into the split files 2010-07-02 19:57:12 +02:00
linenoise.c fmacro included in linenoise.c 2010-07-09 10:51:41 +02:00
linenoise.h redis-cli history saved across sessions 2010-07-07 18:44:53 +02:00
lzf.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
lzfP.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
lzf_c.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
lzf_d.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
mkreleasehdr.sh redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
multi.c Use specialized function to add status and error replies 2010-09-02 23:33:06 +02:00
networking.c new parsing code bugfixing 2010-09-17 16:05:01 +02:00
object.c Use specialized function to add status and error replies 2010-09-02 23:33:06 +02:00
pqsort.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
pqsort.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
pubsub.c minor aesthetic change 2010-07-01 15:14:25 +02:00
rdb.c Update rdb.c to properly work with new memory strategy for sorted sets 2010-09-22 18:07:52 +02:00
redis-benchmark.c Show the current throughput while benchmarking 2010-08-30 11:25:02 +02:00
redis-check-aof.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
redis-check-dump.c fixed a few harmless warnings complining on Linux 2010-09-01 18:31:30 +02:00
redis-cli.c minor typo fixed, reported by Thomas Bassetto 2010-10-07 12:49:14 +02:00
redis.c maxmemory fixed, we now try to release memory just before we check for the memory limit. Before fixing there was code between the attempt to free memory and the check for memory limits, and this code could result into allocations going again after the memory limit. 2010-10-11 13:05:09 +02:00
redis.h Merge remote branch 'pietern/zset-mem' 2010-09-22 16:09:33 +02:00
release.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
replication.c Use specialized function to add status and error replies 2010-09-02 23:33:06 +02:00
sds.c more tests for sds.c 2010-09-23 16:39:02 +02:00
sds.h Add sds function that can be called with va_list 2010-09-02 21:00:15 +02:00
sha1.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
sha1.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
solarisfixes.h Fix for solaris compilation bug Issue 325 2010-09-06 10:12:44 +02:00
sort.c Use existing reply functions where possible 2010-09-02 19:52:04 +02:00
t_hash.c Use specialized function to add status and error replies 2010-09-02 23:33:06 +02:00
t_list.c Merge branch 'master' into networking-perf 2010-09-03 16:44:50 +02:00
t_set.c Use existing reply functions where possible 2010-09-02 19:52:04 +02:00
t_string.c Use specialized function to add status and error replies 2010-09-02 23:33:06 +02:00
t_zset.c two leaks fixed 2010-09-22 17:49:04 +02:00
testhelp.h minimal C test framework + a first example sds.c tests 2010-09-23 16:05:17 +02:00
util.c test for intset integer encodability test and some small refactoring 2010-08-26 18:47:03 +02:00
version.h Version is now 2.1.4 -- AKA 2.2-alpha1 2010-08-31 18:34:34 +02:00
vm.c added some comment and changed coding style for fix for 237 2010-09-03 10:24:18 +02:00
ziplist.c Add regression test and fix for >255 byte string entries 2010-09-23 22:04:19 +02:00
ziplist.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
zipmap.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
zipmap.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
zmalloc.c memory fragmentation reporting in INFO also added for Mac OS X 2010-09-02 10:57:58 +02:00
zmalloc.h memory fragmentation ratio in INFO output 2010-09-02 10:34:39 +02:00