redict/src
2010-08-31 10:21:35 +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 redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
db.c Fixed MONITOR mode and Issue 296 2010-08-30 11:51:45 +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 slave with attached slaves now close the conection to all the slaves when the connection to the master is lost. Now a slave without a connected link to the master will refuse SYNC from other slaves. Enhanced the replication error reporting. All this will fix Issue 156 2010-08-24 16:04:13 +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 Fix issue 300 by upgrading variable types to 64-bit 2010-08-31 10:21:35 +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 Fixed segfault in freeMemoryIfNeeded due to the fact that keys are now sds strings and not objects in the main hash table, thanks to Anthony Lauzon for spotting the bug and providing a patch. 2010-08-27 11:01:03 +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 redis.c split into many different C files. 2010-07-01 14:38:51 +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 BLPOP inside MULTI/EXEC block no longer crashes, instead if the list is empty the behavior is like if the timeout is reached. This fixes Issue 285 2010-08-30 16:31:03 +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.3 2010-08-26 16:58:02 +02:00
vm.c fix for the prev fix 2010-08-27 17:06:36 +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 Add zcalloc and use it where appropriate 2010-07-25 00:11:20 +02:00
zmalloc.h Add zcalloc and use it where appropriate 2010-07-25 00:11:20 +02:00