redict/src
2011-09-30 19:21:36 +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 rioInitWithFile nad rioInitWithBuffer functions now take a rio structure pointer to avoid copying a structure to return value to the caller. 2011-09-22 16:00:40 +02:00
asciilogo.h ASCII ART FTW 2011-04-13 10:58:21 +02:00
bio.c Comment out things in bio.c that are currently not useful but that may be useful in the future. 2011-09-19 17:06:27 +02:00
bio.h REDIS_BIO_AOF_FSYNC implemented 2011-09-15 18:25:53 +02:00
cluster.c Clear the importing status from the slot if a CLUSTER SETSLOT command permanently assigns the slot to the importing node. 2011-09-30 19:20:56 +02:00
config.c Fix adding bulk reply when getcwd fails 2011-07-27 16:22:28 +02:00
config.h ZMALLOC related stuff removed from config.h. They are now defined in zmalloc.h 2011-06-20 11:35:29 +02:00
crc16.c Cluster branch merged to unstable. 2011-03-29 17:51:15 +02:00
db.c don't process EXPIRE with negative TTL or EXPIREAT with time in the past if we are a slave too (see http://groups.google.com/group/redis-db/browse_thread/thread/5a931fefb88b16d5). Also propagate it as DEL. 2011-07-07 16:24:37 +02:00
debug.c DEUBG SLEEP implemented 2011-06-30 13:31:44 +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
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 Compilation fixed on OpenBSD making sure that _XOPEN_SOURCE is set to 700 in fmacros.h 2011-09-29 10:20:03 +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 Lua math.random and math.randomseed replaced with our own version based on redisSrand48(). Seed initialized to the same value at every EVAL/EVALSHA call. 2011-09-23 15:40:58 +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 Take a pointer to the relevant entry of the command table in the client structure. This is generally a more sounding design, simplifies a few functions prototype, and as a side effect fixes a bug related to the conversion of EXPIRE -1 to DEL: before of this fix Redis tried to convert it into an EXPIREAT in the AOF code, regardless of our rewrite of the command. 2011-07-08 12:59:30 +02:00
networking.c Remove the write handler only if there are no longer objects in the output queue AND if the static buffer is empty. This bug was the cause of a possible server-stop-responding-to-client bug under some specific work load. Thanks to Pieter Noordhuis for spotting and fixing it. 2011-09-12 11:06:28 +02:00
object.c Replicate EVALSHA as EVAL taking a dictionary of sha1 -> script source code. 2011-07-13 15:38:03 +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
rand.c libc neutral random function derived from a drand48() implementation added. Will be used to replace Lua's math.random implementation. 2011-09-23 14:51:48 +02:00
rand.h Defined macro with bigger number that redisLrand48() can output. 2011-09-23 15:06:07 +02:00
rdb.c rioInitWithFile nad rioInitWithBuffer functions now take a rio structure pointer to avoid copying a structure to return value to the caller. 2011-09-22 16:00:40 +02:00
rdb.h Move rdbLoad* to top; update comments 2011-05-13 23:24:19 +02:00
redis-benchmark.c Enforce upper bound for number of requests in redis-benchmark 2011-09-16 11:25:00 +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 removed a number of stupid compilation warnings on Linux 2010-11-02 11:15:09 +01:00
redis-cli.c Merge pull request #97 from jvain/redis-cli 2011-09-21 13:32:24 -07:00
redis-trib.rb redis-trib: actual slot migration work in progress, more work needed. 2011-09-30 19:21:36 +02:00
redis.c Fixed command table for RESTORE to make it accepting keys only for the right slots when cluster is enabled. 2011-09-29 15:14:06 +02:00
redis.h Return errors if a write command is called inside a Lua script after a random command was called. See https://github.com/antirez/redis/issues/95 for more information. 2011-09-27 15:30:31 +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
rio.c rioInitWithFile nad rioInitWithBuffer functions now take a rio structure pointer to avoid copying a structure to return value to the caller. 2011-09-22 16:00:40 +02:00
rio.h rioInitWithFile nad rioInitWithBuffer functions now take a rio structure pointer to avoid copying a structure to return value to the caller. 2011-09-22 16:00:40 +02:00
scripting.c Scripting engine now only loads selected libraries, using code originally contributed by @loopole. 2011-09-27 18:46:23 +02:00
sds.c Re-use AOF buffer when it is small enough 2011-09-13 12:22:54 +02:00
sds.h Re-use AOF buffer when it is small enough 2011-09-13 12:22:54 +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
slowlog.c Added an unique ID field to every slow log entry. 2011-06-30 17:36:15 +02:00
slowlog.h Added an unique ID field to every slow log entry. 2011-06-30 17:36:15 +02:00
solarisfixes.h Fix for solaris compilation bug Issue 325 2010-09-06 10:12:44 +02:00
sort.c DB API refactoring. The changes were designed together with Pieter Noordhuis. 2011-06-20 16:42:16 +02:00
syncio.c Use rio.h functions in aof.c 2011-05-14 12:36:22 +02:00
t_hash.c HDEL: Abort deleting fields when hash is removed 2011-07-27 12:29:40 +02:00
t_list.c Optimize LRANGE to scan the list starting from the head or the tail in order to traverse the minimal number of elements. Thanks to Didier Spezia for noticing the problem and providing a patch. 2011-09-14 15:10:28 +02:00
t_set.c Fix for bug 561 and other related problems 2011-06-20 17:19:36 +02:00
t_string.c useless call removed, thanks to Pieter for spotting this 2011-06-20 16:42:37 +02: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 more valgrind friendly test 2011-07-06 15:22:00 +02: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 no more allocation stats info in INFO, useless now that we have jemalloc. 2011-07-02 10:31:16 +02:00
zmalloc.h no more allocation stats info in INFO, useless now that we have jemalloc. 2011-07-02 10:31:16 +02:00