redict/src
Hampus Wessman 0b17517c7c Fix automatic rewrite starting too early.
Slight adjustment in growth calculation.
2011-06-12 07:27:01 +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 CLIENT LIST implemented 2011-04-21 15:38:02 +02:00
anet.h CLIENT LIST implemented 2011-04-21 15:38:02 +02:00
aof.c different message on BGREWRITEAOF when it is just scheduled and not started. 2011-06-10 18:35:16 +02:00
asciilogo.h ASCII ART FTW 2011-04-13 10:58:21 +02:00
cluster.c clear importing/exporing state when appropriate on SETSLOT or ADDSLOTS cluster commands 2011-05-06 16:08:10 +02:00
config.c CONFIG SET/GET support for new automatic AOF rewrite parameters 2011-06-10 15:14:10 +02:00
config.h Show memory allocator in INFO output 2011-05-05 16:32:18 +02:00
crc16.c Cluster branch merged to unstable. 2011-03-29 17:51:15 +02:00
db.c Fixed semantics of CLUSTER SETSLOT, SELECT now only denied in cluster mode if selected DB is not 0 so that MIGRATE still works well. 2011-05-05 18:10:02 +02:00
debug.c DEBUG DIGEST additional lookup needed for VM removed from unstable branch that does not have VM at all 2011-05-10 10:08:01 +02:00
dict.c Introduced a safe iterator interface that can be used to iterate while accessing the dictionary at the same time. Now the default interface is consireded unsafe and should be used only with dictNext() 2011-05-10 10:15:50 +02:00
dict.h Introduced a safe iterator interface that can be used to iterate while accessing the dictionary at the same time. Now the default interface is consireded unsafe and should be used only with dictNext() 2011-05-10 10:15:50 +02:00
diskstore.c fixed two diskstore issues, a quasi-deadlock creating problems with I/O speed and a race condition among threads 2011-02-11 11:16:15 +01:00
dscache.c Preloading messages log level changed from WARNING to DEBUG 2011-03-28 19:03:57 +02:00
endian.c endianess conversion API, to be applied to specially encoded data types for arch agnostic encoding. 2011-03-09 16:24:18 +01:00
endian.h zipmaps are now endianess agnostic, needed for on disk serialization of zipmaps without convertions layers 2011-03-09 17:31:02 +01:00
fmacros.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
help.h help.h updated 2010-12-19 15:19:08 +01:00
intset.c encoding agnostic intsets 2011-03-09 19:14:04 +01:00
intset.h encoded types API to get blob length 2011-02-28 14:48:49 +01: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 Fix Makefile colors. 2011-06-09 16:38:18 +02:00
MANIFESTO Redis manifesto added 2011-03-01 15:20:35 +01:00
mkreleasehdr.sh redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
multi.c Restore argc/argv in EXEC after command is executed 2011-02-23 14:37:22 +01:00
networking.c when Redis fails accepting a new connection reports the error at WARNING and not VERBOSE error level. Thanks to offby1 for proposing this in the Redis mailing list. #backport-candidate 2011-05-07 11:47:34 +02:00
object.c touch less pages in decrRefCount 2011-06-03 17:33:23 +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 Fix for Pub/Sub system, introduced in Redis 2.2.6 with the new copy-on-write safe iterator semantics. In the hope this is the last bug I introduced this way. 2011-05-25 12:32:15 +02:00
rdb.c minor code aesthetic change 2011-06-10 18:13:57 +02:00
redis-benchmark.c There is no debug mode in benchmark tool 2011-06-01 09:22:19 -07: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 removed a number of stupid compilation warnings on Linux 2010-11-02 11:15:09 +01:00
redis-cli.c redis-cli: -i (interval) implemented, to wait the specified number of seconds (decimal digits are allowed) between commands. 2011-05-28 15:41:08 +02:00
redis-trib.rb redis-trib: functions implementing commands moved at bottom 2011-04-14 09:41:22 +02:00
redis.c Fix automatic rewrite starting too early. 2011-06-12 07:27:01 +02:00
redis.h automatic AOF rewrite first implementation. Still to be tested. 2011-06-10 12:39:23 +02:00
release.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
replication.c Two fixes for replication: Slave performs the AOF rewrite at the right point. Non blocking connect also uses readable handler as with old Linux kernels like 2.6.18 on connection refused the writable even is not fired (kernel bug). 2011-06-09 15:39:12 +02:00
sds.c Check seplen and len before malloc'ing "tokens" 2011-05-05 16:32:22 +02:00
sds.h Inline sdslen and sdsavail (thanks to @bitbckt) 2011-05-05 16:25:48 +02:00
sha1.c byte ordering detection in config.h 2011-03-09 15:44:21 +01: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 Test for ENCODING_SKIPLIST instead of ENCODING_RAW 2011-04-06 16:17:07 +02:00
syncio.c Cluster branch merged to unstable. 2011-03-29 17:51:15 +02:00
t_hash.c variadic HDEL with tests 2011-04-19 17:07:55 +02:00
t_list.c removed assert causing an illegal memory access. This was responsible of crashes during BLPOP and other list blocking operations. 2011-05-11 09:50:57 +02:00
t_set.c Fix for the variadic version of SREM. Regression test added. 2011-05-31 20:14:29 +02:00
t_string.c Fixed return value of GETRANGE / SUBSTR 2011-03-04 16:22:50 +01:00
t_zset.c Variadic ZREM 2011-05-31 20:15:18 +02:00
testhelp.h minimal C test framework + a first example sds.c tests 2010-09-23 16:05:17 +02:00
util.c fmacros in utils.c to avoid warning about strcasecmp() 2011-05-16 17:20:27 +02:00
util.h Tests for string2ll; move isObject* to object.c 2011-05-05 16:26:50 +02:00
valgrind.sup valgrind suppression file added 2010-12-10 15:36:04 +01:00
version.h version bumped to 2.9, that is, 3.0 unstable 2011-04-15 17:44:08 +02:00
ziplist.c Use string2ll in ziplist code (faster) 2011-05-05 16:26:51 +02:00
ziplist.h encoded types API to get blob length 2011-02-28 14:48:49 +01:00
zipmap.c zipmaps are now endianess agnostic, needed for on disk serialization of zipmaps without convertions layers 2011-03-09 17:31:02 +01:00
zipmap.h save zipmap encoded hashes as blobs. Work in progress. 2011-02-28 09:56:48 +01:00
zmalloc.c Fixed compilation on FreeBSD 2011-01-20 10:59:49 +01:00
zmalloc.h allocation stats in INFO 2011-01-09 15:56:50 +01:00