]> git.saurik.com Git - redis.git/blobdiff - src/redis.h
Set a 3.5 GB maxmemory limit with noeviction policy if a 32 bit instance without...
[redis.git] / src / redis.h
index 3a5e3d4a81d8fec9ff5464cd5fc09c04f4eb7f2e..66a51c835f80ef0b82a98e5ec4e66f55036ec928 100644 (file)
@@ -527,6 +527,7 @@ struct redisServer {
     int activerehashing;        /* Incremental rehash in serverCron() */
     char *requirepass;          /* Pass for AUTH command, or NULL */
     char *pidfile;              /* PID file path */
+    int arch_bits;              /* 32 or 64 depending on sizeof(long) */
     /* Networking */
     int port;                   /* TCP listening port */
     char *bindaddr;             /* Bind address or NULL */
@@ -627,6 +628,7 @@ struct redisServer {
     list *unblocked_clients; /* list of clients to unblock before next loop */
     /* Sort parameters - qsort_r() is only available under BSD so we
      * have to take this state global, in order to pass it to sortCompare() */
+    int sort_dontsort;
     int sort_desc;
     int sort_alpha;
     int sort_bypattern;