X-Git-Url: https://git.saurik.com/redis.git/blobdiff_plain/e09b51869b355644e4f481634729ed2903acad97..4b72c5617f1b9a53daad5bb58bfc7faf05c8169a:/TODO diff --git a/TODO b/TODO index 48ea8ac6..e7943307 100644 --- a/TODO +++ b/TODO @@ -12,6 +12,7 @@ WARNING: are you a possible Redis contributor? DISKSTORE TODO ============== +* Fix FLUSHALL/FLUSHDB: the queue of pending reads/writes should be handled. * Check that 00/00 and ff/ff exist at startup, otherwise exit with error. * Implement sync flush option, where data is written synchronously on disk when a command is executed. * Implement MULTI/EXEC as transaction abstract API to diskstore.c, with transaction_start, transaction_end, and a journal to recover. @@ -31,6 +32,7 @@ APPEND ONLY FILE OPTIMIZATIONS ============= +* Avoid COW due to incrementing the dict iterators counter. * SORT: Don't copy the list into a vector when BY argument is constant. * Write the hash table size of every db in the dump, so that Redis can resize the hash table just one time when loading a big DB. * Read-only mode for slaves.