]> git.saurik.com Git - redis.git/blame - TODO
fix trailing cr+nl in values
[redis.git] / TODO
CommitLineData
300827b6 1- GETSET
3305306f 2- Fix pure-PHP lib for the new protocol
ed9b544e 3- keys expire
4- sunion ssub
ed9b544e 5- network layer stresser in test in demo
6- maxclients directive
7- check 'server.dirty' everywere
5a6948fb 8- replication automated tests
e3566d4b 9- an external tool able to perform the 'difference' between two Redis servers. It's like 'diff', but against Redis servers, and the output is the set of commands needed to turn the first server into the second, suitable to be sent via netcat.
10
11 $ ./redis-diff 192.168.1.1 192.168.1.2 > diff.txt
12 $ cat diff.txt | nc 192.168.1.1 6379
13 $ ./redis-diff 192.168.1.1 192.168.1.2
14 $ # No output now the servers are identical
15
16This command should be smart and don't use too much memory, that is, take two connections at the same time against the two servers and perform the comparison key by key. Probably the initial "KEYS *" is unavoidable.
17
10c43610 18- objects sharing, "objectsharing yes", "objectsharingpool 1024"
774e3047 19- if in-memory values compression will be implemented, make sure to implement this so that addReply() is able to handle compressed objects, just creating an uncompressed version on the fly and adding this to the output queue instead of the original one. When insetad we need to look at the object string value (SORT BY for example), call a function that will turn the object into an uncompresed one.