summaryrefslogtreecommitdiff
path: root/src/dict.h
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2010-11-03 11:23:59 +0100
committerantirez <antirez@gmail.com>2010-11-03 11:23:59 +0100
commit1b1f47c915c69eae40d99727267b147f7c5a44ac (patch)
tree5fadcc2217c5d8f6232c9d83eb6986c93be11e4a /src/dict.h
parent297e77c6ab9f65fed7f7ee5baa26310071f6ce9e (diff)
downloadredis-1b1f47c915c69eae40d99727267b147f7c5a44ac.tar.gz
command lookup process turned into a much more flexible and probably faster hash table
Diffstat (limited to 'src/dict.h')
-rw-r--r--src/dict.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dict.h b/src/dict.h
index 30ace4db7..25cce4e50 100644
--- a/src/dict.h
+++ b/src/dict.h
@@ -137,6 +137,7 @@ void dictReleaseIterator(dictIterator *iter);
dictEntry *dictGetRandomKey(dict *d);
void dictPrintStats(dict *d);
unsigned int dictGenHashFunction(const unsigned char *buf, int len);
+unsigned int dictGenCaseHashFunction(const unsigned char *buf, int len);
void dictEmpty(dict *d);
void dictEnableResize(void);
void dictDisableResize(void);