Go to file
2010-05-19 14:53:57 +02:00
client-libraries
design-documents Added more information about slave election in Redis Cluster alternative doc 2010-04-29 15:39:11 +02:00
doc html doc rebuild 2010-05-18 00:39:49 +02:00
tests Merge branch 'master' into integration 2010-05-19 14:53:57 +02:00
utils
.gitignore create release.h in make process and add this information to INFO listing 2010-05-17 22:28:12 +02:00
adlist.c A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files. 2010-02-19 11:23:57 +01:00
adlist.h A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files. 2010-02-19 11:23:57 +01:00
ae_epoll.c A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files. 2010-02-19 11:23:57 +01:00
ae_kqueue.c
ae_select.c A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files. 2010-02-19 11:23:57 +01:00
ae.c A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files. 2010-02-19 11:23:57 +01:00
ae.h A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files. 2010-02-19 11:23:57 +01:00
anet.c A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files. 2010-02-19 11:23:57 +01:00
anet.h A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files. 2010-02-19 11:23:57 +01:00
BETATESTING.txt
BUGS
Changelog buliding of release.h moved into an external script. Avoided recompialtion of redis.c if git sha1 is the same as the previous one 2010-05-18 00:36:48 +02:00
config.h On Linux now fdatasync() is used insetad of fsync() in order to flush the AOF file kernel buffers 2010-05-02 15:05:34 +02:00
COPYING
dict.c added dictFetchValue() to dict.c to make hash table API a bit less verbose in the common cases 2010-04-16 10:04:51 +02:00
dict.h added dictFetchValue() to dict.c to make hash table API a bit less verbose in the common cases 2010-04-16 10:04:51 +02:00
fmacros.h compilation fix for mac os x 2010-05-02 15:08:06 +02:00
linenoise.c included fmacros.h in linenose.c to avoid compilation warnings on Linux 2010-05-02 15:11:05 +02:00
linenoise.h Use linenoise for line editing on redis-cli. 2010-03-23 11:53:51 -03:00
lzf_c.c
lzf_d.c
lzf.h
lzfP.h
Makefile buliding of release.h moved into an external script. Avoided recompialtion of redis.c if git sha1 is the same as the previous one 2010-05-18 00:36:48 +02:00
mkreleasehdr.sh git hash 00000000 in reelase.h when git is not found enabled again after some shell scripting fix that is now compatible with most shells 2010-05-18 16:39:57 +02:00
pqsort.c A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files. 2010-02-19 11:23:57 +01:00
pqsort.h A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files. 2010-02-19 11:23:57 +01:00
README
redis-benchmark.c redis-benchmark now implements Set commands benchmarks 2010-03-04 23:05:12 +01:00
redis-check-aof.c fixed compilation warnings in the AOF sanity check tool 2010-05-12 11:56:12 +02:00
redis-check-dump.c utility to check rdb files for unprocessable opcodes 2010-03-13 15:57:00 +01:00
redis-cli.c Don't rely on cliReadReply being able to return on shutdown 2010-05-14 11:38:09 -03:00
redis.c Merge branch 'master' into integration 2010-05-19 14:53:57 +02:00
redis.conf conflicts resolved 2010-05-13 14:24:41 +02:00
redis.h A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files. 2010-02-19 11:23:57 +01:00
sds.c long long to string conversion speedup applied in other places as well. Still the code has bugs, fixing right now... 2010-05-11 14:13:53 +02:00
sds.h long long to string conversion speedup applied in other places as well. Still the code has bugs, fixing right now... 2010-05-11 14:13:53 +02:00
sha1.c Solaris fixes 2010-05-18 10:05:00 +02:00
sha1.h DEBUG DIGEST implemented, in order to improve the ability to test persistence and replication consistency 2010-05-14 13:41:57 +02:00
solarisfixes.h Solaris fixes 2010-05-18 10:05:00 +02:00
staticsymbols.h random refactoring and speedups 2010-05-16 02:02:46 +02:00
test-redis.tcl use DEBUG DIGEST in the test instead of a function that was doing a similar work, but in a much slower and buggy way 2010-05-14 16:41:24 +02:00
TODO very strong speedup in saving time performance when there are many integers in the dataset. Instead of decoding the object before to pass them to the rdbSaveObject layer we check asap if the object is integer encoded and can be written on disk as an integer. 2010-05-13 13:36:42 +02:00
zipmap.c update the zipmap entry in-place instead of appending it 2010-04-01 14:02:22 +02:00
zipmap.h zipmap fix for large values 2010-03-18 03:23:44 +01:00
zmalloc.c More precise memory used guesswork in zmalloc.c 2010-04-20 11:01:36 +02:00
zmalloc.h A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files. 2010-02-19 11:23:57 +01:00

Check the 'doc' directory. doc/README.html is a good starting point :)