]> git.saurik.com Git - redis.git/blob - TODO
dict.c modified to be able to handle more than 150,000,000 keys
[redis.git] / TODO
1 BEFORE REDIS 1.0.0-rc1
2
3 - TTL command that returns -1 if a key is not volatile otherwise the time to live of a volatile key.
4 - Remove max number of args limit
5 - What happens if the saving child gets killed or segfaults instead of ending normally? Handle this.
6 - Make sinterstore / unionstore / sdiffstore returning the cardinality of the resulting set.
7 - maxclients directive
8 - check 'server.dirty' everywere
9 - replication automated tests
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.
11 - Document replication
12 - Objects sharing configuration, add the directive "objectsharingpool <size>"
13 - Make sure to convert all the fstat() calls to 64bit versions.
14 - SINTERCOUNT, SUNIONCOUNT, SDIFFCOUNT
15
16 AFTER 1.0 stable release
17
18 - Use partial qsort for SORT + LIMIT
19 - Locking primitives
20
21 FUTURE HINTS
22
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.