]> git.saurik.com Git - redis.git/blame - TODO
Warns if /proc/sys/vm/overcommit_memory is set to 0 on Linux. Also make sure to don...
[redis.git] / TODO
CommitLineData
0c66a471 1BEFORE REDIS 1.0.0-rc1
2
0bc03378 3- Resize the expires hash tables if needed as well
4- Elapsed time in logs for SAVE when saving is going to take more than 2 seconds
3a2694c4 5- TTL command that returns -1 if a key is not volatile otherwise the time to live of a volatile key.
b284af55 6- Remove max number of args limit
f2923bec 7- What happens if the saving child gets killed or segfaults instead of ending normally? Handle this.
6208b3a7 8- Make sinterstore / unionstore / sdiffstore returning the cardinality of the resulting set.
ed9b544e 9- maxclients directive
10- check 'server.dirty' everywere
5a6948fb 11- replication automated tests
290deb8b 12- 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 13- Document replication
14- Objects sharing configuration, add the directive "objectsharingpool <size>"
3c910136 15- Make sure to convert all the fstat() calls to 64bit versions.
d68ed120 16- SINTERCOUNT, SUNIONCOUNT, SDIFFCOUNT
0c66a471 17
f2923bec 18AFTER 1.0 stable release
19
20- Use partial qsort for SORT + LIMIT
21- Locking primitives
22
0c66a471 23FUTURE HINTS
24
f2923bec 25- 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.