]> git.saurik.com Git - redis.git/blame - TODO
dict.c modified to be able to handle more than 150,000,000 keys
[redis.git] / TODO
CommitLineData
0c66a471 1BEFORE REDIS 1.0.0-rc1
2
3a2694c4 3- TTL command that returns -1 if a key is not volatile otherwise the time to live of a volatile key.
b284af55 4- Remove max number of args limit
f2923bec 5- What happens if the saving child gets killed or segfaults instead of ending normally? Handle this.
6208b3a7 6- Make sinterstore / unionstore / sdiffstore returning the cardinality of the resulting set.
ed9b544e 7- maxclients directive
8- check 'server.dirty' everywere
5a6948fb 9- replication automated tests
290deb8b 10- Shutdown must kill other background savings before to start saving. Otherwise the DB can get replaced by the child that rename(2) after the parent for some reason.
290deb8b 11- Document replication
12- Objects sharing configuration, add the directive "objectsharingpool <size>"
3c910136 13- Make sure to convert all the fstat() calls to 64bit versions.
d68ed120 14- SINTERCOUNT, SUNIONCOUNT, SDIFFCOUNT
0c66a471 15
f2923bec 16AFTER 1.0 stable release
17
18- Use partial qsort for SORT + LIMIT
19- Locking primitives
20
0c66a471 21FUTURE HINTS
22
f2923bec 23- In memory compression: 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.