]> git.saurik.com Git - redis.git/blobdiff - TODO
APPEND command
[redis.git] / TODO
diff --git a/TODO b/TODO
index 853b5ed912e05aa66e932e07e03cf09214d9437e..f904821a2e730343ed4317076ab4b495f5092f62 100644 (file)
--- a/TODO
+++ b/TODO
@@ -17,6 +17,9 @@ Virtual Memory sub-TODO:
 * Possibly decrRefCount() against swapped objects can be moved into I/O threads, as it's a slow operation against million elements list, and in general consumes CPU time that can be consumed by other threads (and cores).
 * EXISTS should avoid loading the object if possible without too make the code too specialized.
 * vm-min-age <seconds> option
+* Make sure objects loaded from the VM are specially encoded when possible.
+* Check what happens performance-wise if instead to create threads again and again the same threads are reused forever. Note: this requires a way to disable this clients in the child, but waiting for empty new jobs queue can be enough.
+* Sets of integers are slow to load, for a number of reasons. Fix it. (use slow_sets.rdb file for debugging).
 
 * Hashes (GET/SET/DEL/INCRBY/EXISTS/FIELDS/LEN/MSET/MGET). Special encoding for hashes with < N keys.