redict/src
2010-10-27 17:11:17 +02: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_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
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
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 more generally usable i/o functions moved to syncio.c 2010-10-25 10:53:28 +02:00
config.c CONFIG RESETSTAT no longer resets the server uptime. Now keyspace hits/misses are reset as well. 2010-10-15 12:29:05 +02:00
config.h Exclusively use either tcmalloc or OSX's native malloc_size() 2010-10-23 10:18:48 +02:00
db.c added keyspace_hits and keyspace_misses fields in INFO output 2010-10-15 12:19:21 +02:00
debug.c removed useless spaces from DEBUG OBJECT output 2010-10-27 17:11:17 +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_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
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
Makefile synchronous I/O networking functions originally used just for replication refactored in a file as generally useful, they are used in the cluster branch for MIGRATE. 2010-10-24 16:22:52 +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 prevent small integer sharing when maxmemory is active. So every object will use a private LRU field and the LRU algorithm can work well 2010-10-15 18:04:05 +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 Make sure to reset the signal handler and deliver again the original crashing signal when dumping the stack trace. This will allow to dump the core if core dumping is enabled. 2010-10-22 23:30:48 +02:00
redis.h added a missing prototype from syncio.c in redis.h 2010-10-25 10:54:37 +02:00
release.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
replication.c synchronous I/O networking functions originally used just for replication refactored in a file as generally useful, they are used in the cluster branch for MIGRATE. 2010-10-24 16:22:52 +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
syncio.c more generally usable i/o functions moved to syncio.c 2010-10-25 10:53:28 +02:00
t_hash.c Return error to client on wrong type for HMGET 2010-10-26 12:33:17 +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 bumped to 2.1.5 2010-10-21 17:55:44 +02:00
vm.c Object approximated LRU algorithm enhanced / fixed / refactored. This is used for the VM currently but will soon be used for maxmemory expiring. 2010-10-14 13:52:58 +02:00
ziplist.c Replace ziplist stresser and fix regression 2010-10-14 21:11:42 +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 Don't use prefix when malloc_size() can be called 2010-10-23 09:59:28 +02:00
zmalloc.h memory fragmentation ratio in INFO output 2010-09-02 10:34:39 +02:00