]> git.saurik.com Git - redis.git/blobdiff - src/redis.h
Clarify comment
[redis.git] / src / redis.h
index 67efeeb0449731e0b155176c5d93a3b0fb58fecf..5ae9cc1c14e009125220de47674ec2afdf811118 100644 (file)
@@ -517,7 +517,7 @@ struct redisCommand {
     int vm_firstkey; /* The first argument that's a key (0 = no keys) */
     int vm_lastkey;  /* THe last argument that's a key */
     int vm_keystep;  /* The step between first and last key */
-    long long microseconds;
+    long long microseconds, calls;
 };
 
 struct redisFunctionSym {
@@ -800,6 +800,7 @@ void updateDictResizePolicy(void);
 int htNeedsResize(dict *dict);
 void oom(const char *msg);
 void populateCommandTable(void);
+void resetCommandTableStats(void);
 
 /* Disk store */
 int dsOpen(void);