redict/src
2010-09-08 13:47:28 +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 translated a few long logn into int64_t for correctness and to avoid compilation warnings as well 2010-08-26 18:11:26 +02:00
config.c merged intset code into the split files 2010-07-02 19:57:12 +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 Fix re-enabled again, I forgot to check if VM was enabled before calling handleClientsBlockedOnSwappedKey() 2010-09-08 13:47:28 +02:00
debug.c Rename iterator to setTypeIterator for consistency 2010-08-21 11:38:24 +02:00
dict.c hash table example commented out in dict.c 2010-07-27 10:00:38 +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 Makefile deps updated 2010-08-30 11:37:17 +02:00
mkreleasehdr.sh redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
multi.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
networking.c Fix bug where the client is not present in server.clients when free'ing it 2010-09-07 10:25:34 +02:00
object.c removed a duplicated ERRNO checking that is useless at all 2010-08-26 12:10:16 +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 Fix for a race in BGSAVE that may result in some data not being saved as soon as possible (when the configured saving triggers should fire). Also known as Issue 313, more details there in the google code issue. 2010-08-30 10:32:32 +02:00
redis-benchmark.c redis.c split into many different C files. 2010-07-01 14:38:51 +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 Now redis-cli replies to help showing some basic usage information (Issue 291) 2010-08-30 15:57:03 +02:00
redis.c memory fragmentation ratio in INFO output 2010-09-02 10:34:39 +02:00
redis.h Fix for a race in BGSAVE that may result in some data not being saved as soon as possible (when the configured saving triggers should fire). Also known as Issue 313, more details there in the google code issue. 2010-08-30 10:32:32 +02:00
release.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
replication.c Fixed another instace of the Issue 173 2010-08-27 12:46:10 +02:00
sds.c Fix parenthesis error on decrementing *argc 2010-08-26 13:18:44 +02:00
sds.h redis cli argument splitting is general and is now moved into the sds.c lib 2010-08-05 11:36:39 +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 Rename iterator to setTypeIterator for consistency 2010-08-21 11:38:24 +02:00
t_hash.c WATCH is now affected only when write commands actually modify the key content 2010-07-12 12:01:15 +02:00
t_list.c resolved conflict merging pietern/bpop-timeout 2010-08-31 11:23:12 +02:00
t_set.c test for intset integer encodability test and some small refactoring 2010-08-26 18:47:03 +02:00
t_string.c support for write operations against expiring keys, by master-controlled expiring in replication and AOF synthesizing DEL operations 2010-08-02 18:13:39 +02:00
t_zset.c Change getDoubleFromObject to fail on NaN. 2010-07-29 23:05:01 +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 fixed a ziplist bug about encoding of integer values overflowing 64 bit 2010-07-27 15:26:08 +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