redis/src
antirez afd438dfff previouse INCR implementation restored, was actually faster for some reson not fully clear at the moment 2010-12-10 19:15:00 +01:00
..
Makefile Don't hardcode make to "make" 2010-11-21 16:44:17 +01: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.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
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
anet.c sockaddr_un.sun_path appears to never hold anything after accept() 2010-10-13 18:50:07 +02:00
anet.h sockaddr_un.sun_path appears to never hold anything after accept() 2010-10-13 18:50:07 +02:00
aof.c non blocking loading of the DB / AOF with informations and ETA in INFO output 2010-11-08 11:52:03 +01:00
config.c added noeviction policy to redis maxmemory. ZSCORE removed from the list of commands that can't be called when we are low on memory, this command was added in the past for a stupid error. 2010-11-08 16:12:16 +01:00
config.h Exclusively use either tcmalloc or OSX's native malloc_size() 2010-10-23 10:18:48 +02:00
db.c command lookup process turned into a much more flexible and probably faster hash table 2010-11-03 11:23:59 +01:00
debug.c SINTER/MEMBERS are now COW friendly, also some refactoring around was needed to get this result. 2010-12-09 23:01:09 +01:00
dict.c command lookup process turned into a much more flexible and probably faster hash table 2010-11-03 11:23:59 +01:00
dict.h command lookup process turned into a much more flexible and probably faster hash table 2010-11-03 11:23:59 +01:00
fmacros.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
help.h Refactor help-related code into redis-cli.c 2010-11-28 21:37:19 +01:00
intset.c COW friendly versions of SPOP and SRANDMEMBER commands, with some change to the set encoding-agnostic API. 2010-12-09 10:21:02 +01:00
intset.h COW friendly versions of SPOP and SRANDMEMBER commands, with some change to the set encoding-agnostic API. 2010-12-09 10:21:02 +01: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
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
mkreleasehdr.sh redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
multi.c command lookup process turned into a much more flexible and probably faster hash table 2010-11-03 11:23:59 +01:00
networking.c LRANGE converted into a COW friendly command. Some refactoring, comment, and new addReply*() family function added in the process. 2010-12-07 16:33:13 +01:00
object.c Stop using the freelist robj* cache 2010-11-04 10:09:30 +01: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 Skip object encoding where it doesn't make sense 2010-10-17 18:13:31 +02:00
rdb.c Stop using /dev/null to find out the serialized object length 2010-11-21 16:31:27 +01:00
redis-benchmark.c Use multi-bulk protocol in SET benchmark 2010-11-05 10:22:52 +01: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 added support for ctrl-l and clear command into redis-cli. To clear the screen is a good idea from time to time :). Also linenoise updated to the current version to support this new feature. 2010-12-01 11:18:59 +01:00
redis.c Stop using /dev/null to find out the serialized object length 2010-11-21 16:31:27 +01:00
redis.h fixed compilation on Linux 2010-12-10 15:47:01 +01:00
release.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
replication.c Fix for bug 374, thanks to Jeremy Zawodny for reporting and tracing why it was crashing. 2010-11-12 20:02:20 +01: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 HGET HMGET are now COW friendly, plus API refactoring and changes needed for the new implementation. 2010-12-10 15:17:55 +01:00
syncio.c more generally usable i/o functions moved to syncio.c 2010-10-25 10:53:28 +02:00
t_hash.c HGET HMGET are now COW friendly, plus API refactoring and changes needed for the new implementation. 2010-12-10 15:17:55 +01:00
t_list.c LRANGE converted into a COW friendly command. Some refactoring, comment, and new addReply*() family function added in the process. 2010-12-07 16:33:13 +01:00
t_set.c SINTER/MEMBERS are now COW friendly, also some refactoring around was needed to get this result. 2010-12-09 23:01:09 +01:00
t_string.c previouse INCR implementation restored, was actually faster for some reson not fully clear at the moment 2010-12-10 19:15:00 +01:00
t_zset.c merge conflict resolved 2010-10-28 22:59:47 +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
valgrind.sup valgrind suppression file added 2010-12-10 15:36:04 +01:00
version.h version bumped to 2.1.7 after merging with aaslave branch for non blocking slaves 2010-11-05 11:00:20 +01:00
vm.c Stop using /dev/null to find out the serialized object length 2010-11-21 16:31:27 +01:00
ziplist.c LRANGE converted into a COW friendly command. Some refactoring, comment, and new addReply*() family function added in the process. 2010-12-07 16:33:13 +01:00
ziplist.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
zipmap.c removed a number of stupid compilation warnings on Linux 2010-11-02 11:15:09 +01:00
zipmap.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
zmalloc.c zmalloc functions to get RSS and fragmentation refactored into two separated functions 2010-11-02 10:51:09 +01:00
zmalloc.h zmalloc functions to get RSS and fragmentation refactored into two separated functions 2010-11-02 10:51:09 +01:00