2 * Copyright (c) 2009-2012, Salvatore Sanfilippo <antirez at gmail dot com>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
8 * * Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * * Neither the name of Redis nor the names of its contributors may be used
14 * to endorse or promote products derived from this software without
15 * specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 * POSSIBILITY OF SUCH DAMAGE.
37 #include "solarisfixes.h"
50 #include <netinet/in.h>
54 #include "ae.h" /* Event driven programming library */
55 #include "sds.h" /* Dynamic safe strings */
56 #include "dict.h" /* Hash tables */
57 #include "adlist.h" /* Linked lists */
58 #include "zmalloc.h" /* total memory usage aware version of malloc/free */
59 #include "anet.h" /* Networking the easy way */
60 #include "ziplist.h" /* Compact list data structure */
61 #include "intset.h" /* Compact integer set structure */
62 #include "version.h" /* Version macro */
63 #include "util.h" /* Misc functions useful in many places */
69 /* Static server configuration */
70 #define REDIS_HZ 100 /* Time interrupt calls/sec. */
71 #define REDIS_SERVERPORT 6379 /* TCP port */
72 #define REDIS_MAXIDLETIME 0 /* default client timeout: infinite */
73 #define REDIS_DEFAULT_DBNUM 16
74 #define REDIS_CONFIGLINE_MAX 1024
75 #define REDIS_EXPIRELOOKUPS_PER_CRON 10 /* lookup 10 expires per loop */
76 #define REDIS_EXPIRELOOKUPS_TIME_PERC 25 /* CPU max % for keys collection */
77 #define REDIS_MAX_WRITE_PER_EVENT (1024*64)
78 #define REDIS_SHARED_SELECT_CMDS 10
79 #define REDIS_SHARED_INTEGERS 10000
80 #define REDIS_SHARED_BULKHDR_LEN 32
81 #define REDIS_MAX_LOGMSG_LEN 1024 /* Default maximum length of syslog messages */
82 #define REDIS_AOF_REWRITE_PERC 100
83 #define REDIS_AOF_REWRITE_MIN_SIZE (1024*1024)
84 #define REDIS_AOF_REWRITE_ITEMS_PER_CMD 64
85 #define REDIS_SLOWLOG_LOG_SLOWER_THAN 10000
86 #define REDIS_SLOWLOG_MAX_LEN 128
87 #define REDIS_MAX_CLIENTS 10000
88 #define REDIS_AUTHPASS_MAX_LEN 512
89 #define REDIS_DEFAULT_SLAVE_PRIORITY 100
90 #define REDIS_REPL_TIMEOUT 60
91 #define REDIS_REPL_PING_SLAVE_PERIOD 10
92 #define REDIS_RUN_ID_SIZE 40
93 #define REDIS_OPS_SEC_SAMPLES 16
95 /* Protocol and I/O related defines */
96 #define REDIS_MAX_QUERYBUF_LEN (1024*1024*1024) /* 1GB max query buffer. */
97 #define REDIS_IOBUF_LEN (1024*16) /* Generic I/O buffer size */
98 #define REDIS_REPLY_CHUNK_BYTES (16*1024) /* 16k output buffer */
99 #define REDIS_INLINE_MAX_SIZE (1024*64) /* Max size of inline reads */
100 #define REDIS_MBULK_BIG_ARG (1024*32)
102 /* Hash table parameters */
103 #define REDIS_HT_MINFILL 10 /* Minimal hash table fill 10% */
105 /* Command flags. Please check the command table defined in the redis.c file
106 * for more information about the meaning of every flag. */
107 #define REDIS_CMD_WRITE 1 /* "w" flag */
108 #define REDIS_CMD_READONLY 2 /* "r" flag */
109 #define REDIS_CMD_DENYOOM 4 /* "m" flag */
110 #define REDIS_CMD_FORCE_REPLICATION 8 /* "f" flag */
111 #define REDIS_CMD_ADMIN 16 /* "a" flag */
112 #define REDIS_CMD_PUBSUB 32 /* "p" flag */
113 #define REDIS_CMD_NOSCRIPT 64 /* "s" flag */
114 #define REDIS_CMD_RANDOM 128 /* "R" flag */
115 #define REDIS_CMD_SORT_FOR_SCRIPT 256 /* "S" flag */
116 #define REDIS_CMD_LOADING 512 /* "l" flag */
117 #define REDIS_CMD_STALE 1024 /* "t" flag */
118 #define REDIS_CMD_SKIP_MONITOR 2048 /* "M" flag */
121 #define REDIS_STRING 0
127 /* Objects encoding. Some kind of objects like Strings and Hashes can be
128 * internally represented in multiple ways. The 'encoding' field of the object
129 * is set to one of this fields for this object. */
130 #define REDIS_ENCODING_RAW 0 /* Raw representation */
131 #define REDIS_ENCODING_INT 1 /* Encoded as integer */
132 #define REDIS_ENCODING_HT 2 /* Encoded as hash table */
133 #define REDIS_ENCODING_ZIPMAP 3 /* Encoded as zipmap */
134 #define REDIS_ENCODING_LINKEDLIST 4 /* Encoded as regular linked list */
135 #define REDIS_ENCODING_ZIPLIST 5 /* Encoded as ziplist */
136 #define REDIS_ENCODING_INTSET 6 /* Encoded as intset */
137 #define REDIS_ENCODING_SKIPLIST 7 /* Encoded as skiplist */
139 /* Defines related to the dump file format. To store 32 bits lengths for short
140 * keys requires a lot of space, so we check the most significant 2 bits of
141 * the first byte to interpreter the length:
143 * 00|000000 => if the two MSB are 00 the len is the 6 bits of this byte
144 * 01|000000 00000000 => 01, the len is 14 byes, 6 bits + 8 bits of next byte
145 * 10|000000 [32 bit integer] => if it's 01, a full 32 bit len will follow
146 * 11|000000 this means: specially encoded object will follow. The six bits
147 * number specify the kind of object that follows.
148 * See the REDIS_RDB_ENC_* defines.
150 * Lenghts up to 63 are stored using a single byte, most DB keys, and may
151 * values, will fit inside. */
152 #define REDIS_RDB_6BITLEN 0
153 #define REDIS_RDB_14BITLEN 1
154 #define REDIS_RDB_32BITLEN 2
155 #define REDIS_RDB_ENCVAL 3
156 #define REDIS_RDB_LENERR UINT_MAX
158 /* When a length of a string object stored on disk has the first two bits
159 * set, the remaining two bits specify a special encoding for the object
160 * accordingly to the following defines: */
161 #define REDIS_RDB_ENC_INT8 0 /* 8 bit signed integer */
162 #define REDIS_RDB_ENC_INT16 1 /* 16 bit signed integer */
163 #define REDIS_RDB_ENC_INT32 2 /* 32 bit signed integer */
164 #define REDIS_RDB_ENC_LZF 3 /* string compressed with FASTLZ */
167 #define REDIS_AOF_OFF 0 /* AOF is off */
168 #define REDIS_AOF_ON 1 /* AOF is on */
169 #define REDIS_AOF_WAIT_REWRITE 2 /* AOF waits rewrite to start appending */
172 #define REDIS_SLAVE (1<<0) /* This client is a slave server */
173 #define REDIS_MASTER (1<<1) /* This client is a master server */
174 #define REDIS_MONITOR (1<<2) /* This client is a slave monitor, see MONITOR */
175 #define REDIS_MULTI (1<<3) /* This client is in a MULTI context */
176 #define REDIS_BLOCKED (1<<4) /* The client is waiting in a blocking operation */
177 #define REDIS_DIRTY_CAS (1<<5) /* Watched keys modified. EXEC will fail. */
178 #define REDIS_CLOSE_AFTER_REPLY (1<<6) /* Close after writing entire reply. */
179 #define REDIS_UNBLOCKED (1<<7) /* This client was unblocked and is stored in
180 server.unblocked_clients */
181 #define REDIS_LUA_CLIENT (1<<8) /* This is a non connected client used by Lua */
182 #define REDIS_ASKING (1<<9) /* Client issued the ASKING command */
183 #define REDIS_CLOSE_ASAP (1<<10)/* Close this client ASAP */
184 #define REDIS_UNIX_SOCKET (1<<11) /* Client connected via Unix domain socket */
185 #define REDIS_DIRTY_EXEC (1<<12) /* EXEC will fail for errors while queueing */
187 /* Client request types */
188 #define REDIS_REQ_INLINE 1
189 #define REDIS_REQ_MULTIBULK 2
191 /* Client classes for client limits, currently used only for
192 * the max-client-output-buffer limit implementation. */
193 #define REDIS_CLIENT_LIMIT_CLASS_NORMAL 0
194 #define REDIS_CLIENT_LIMIT_CLASS_SLAVE 1
195 #define REDIS_CLIENT_LIMIT_CLASS_PUBSUB 2
196 #define REDIS_CLIENT_LIMIT_NUM_CLASSES 3
198 /* Slave replication state - slave side */
199 #define REDIS_REPL_NONE 0 /* No active replication */
200 #define REDIS_REPL_CONNECT 1 /* Must connect to master */
201 #define REDIS_REPL_CONNECTING 2 /* Connecting to master */
202 #define REDIS_REPL_RECEIVE_PONG 3 /* Wait for PING reply */
203 #define REDIS_REPL_TRANSFER 4 /* Receiving .rdb from master */
204 #define REDIS_REPL_CONNECTED 5 /* Connected to master */
206 /* Synchronous read timeout - slave side */
207 #define REDIS_REPL_SYNCIO_TIMEOUT 5
209 /* Slave replication state - from the point of view of master
210 * Note that in SEND_BULK and ONLINE state the slave receives new updates
211 * in its output queue. In the WAIT_BGSAVE state instead the server is waiting
212 * to start the next background saving in order to send updates to it. */
213 #define REDIS_REPL_WAIT_BGSAVE_START 3 /* master waits bgsave to start feeding it */
214 #define REDIS_REPL_WAIT_BGSAVE_END 4 /* master waits bgsave to start bulk DB transmission */
215 #define REDIS_REPL_SEND_BULK 5 /* master is sending the bulk DB */
216 #define REDIS_REPL_ONLINE 6 /* bulk DB already transmitted, receive updates */
218 /* List related stuff */
222 /* Sort operations */
223 #define REDIS_SORT_GET 0
224 #define REDIS_SORT_ASC 1
225 #define REDIS_SORT_DESC 2
226 #define REDIS_SORTKEY_MAX 1024
229 #define REDIS_DEBUG 0
230 #define REDIS_VERBOSE 1
231 #define REDIS_NOTICE 2
232 #define REDIS_WARNING 3
233 #define REDIS_LOG_RAW (1<<10) /* Modifier to log without timestamp */
235 /* Anti-warning macro... */
236 #define REDIS_NOTUSED(V) ((void) V)
238 #define ZSKIPLIST_MAXLEVEL 32 /* Should be enough for 2^32 elements */
239 #define ZSKIPLIST_P 0.25 /* Skiplist P = 1/4 */
241 /* Append only defines */
242 #define AOF_FSYNC_NO 0
243 #define AOF_FSYNC_ALWAYS 1
244 #define AOF_FSYNC_EVERYSEC 2
246 /* Zip structure related defaults */
247 #define REDIS_HASH_MAX_ZIPLIST_ENTRIES 512
248 #define REDIS_HASH_MAX_ZIPLIST_VALUE 64
249 #define REDIS_LIST_MAX_ZIPLIST_ENTRIES 512
250 #define REDIS_LIST_MAX_ZIPLIST_VALUE 64
251 #define REDIS_SET_MAX_INTSET_ENTRIES 512
252 #define REDIS_ZSET_MAX_ZIPLIST_ENTRIES 128
253 #define REDIS_ZSET_MAX_ZIPLIST_VALUE 64
255 /* Sets operations codes */
256 #define REDIS_OP_UNION 0
257 #define REDIS_OP_DIFF 1
258 #define REDIS_OP_INTER 2
260 /* Redis maxmemory strategies */
261 #define REDIS_MAXMEMORY_VOLATILE_LRU 0
262 #define REDIS_MAXMEMORY_VOLATILE_TTL 1
263 #define REDIS_MAXMEMORY_VOLATILE_RANDOM 2
264 #define REDIS_MAXMEMORY_ALLKEYS_LRU 3
265 #define REDIS_MAXMEMORY_ALLKEYS_RANDOM 4
266 #define REDIS_MAXMEMORY_NO_EVICTION 5
269 #define REDIS_LUA_TIME_LIMIT 5000 /* milliseconds */
272 #define UNIT_SECONDS 0
273 #define UNIT_MILLISECONDS 1
276 #define REDIS_SHUTDOWN_SAVE 1 /* Force SAVE on SHUTDOWN even if no save
277 points are configured. */
278 #define REDIS_SHUTDOWN_NOSAVE 2 /* Don't SAVE on SHUTDOWN. */
280 /* Command call flags, see call() function */
281 #define REDIS_CALL_NONE 0
282 #define REDIS_CALL_SLOWLOG 1
283 #define REDIS_CALL_STATS 2
284 #define REDIS_CALL_PROPAGATE 4
285 #define REDIS_CALL_FULL (REDIS_CALL_SLOWLOG | REDIS_CALL_STATS | REDIS_CALL_PROPAGATE)
287 /* Command propagation flags, see propagate() function */
288 #define REDIS_PROPAGATE_NONE 0
289 #define REDIS_PROPAGATE_AOF 1
290 #define REDIS_PROPAGATE_REPL 2
292 /* Using the following macro you can run code inside serverCron() with the
293 * specified period, specified in milliseconds.
294 * The actual resolution depends on REDIS_HZ. */
295 #define run_with_period(_ms_) if (!(server.cronloops%((_ms_)/(1000/REDIS_HZ))))
297 /* We can print the stacktrace, so our assert is defined this way: */
298 #define redisAssertWithInfo(_c,_o,_e) ((_e)?(void)0 : (_redisAssertWithInfo(_c,_o,#_e,__FILE__,__LINE__),_exit(1)))
299 #define redisAssert(_e) ((_e)?(void)0 : (_redisAssert(#_e,__FILE__,__LINE__),_exit(1)))
300 #define redisPanic(_e) _redisPanic(#_e,__FILE__,__LINE__),_exit(1)
302 /*-----------------------------------------------------------------------------
304 *----------------------------------------------------------------------------*/
306 /* A redis object, that is a type able to hold a string / list / set */
308 /* The actual Redis Object */
309 #define REDIS_LRU_CLOCK_MAX ((1<<21)-1) /* Max value of obj->lru */
310 #define REDIS_LRU_CLOCK_RESOLUTION 10 /* LRU clock resolution in seconds */
311 typedef struct redisObject
{
313 unsigned notused
:2; /* Not used */
315 unsigned lru
:22; /* lru time (relative to server.lruclock) */
320 /* Macro used to initalize a Redis object allocated on the stack.
321 * Note that this macro is taken near the structure definition to make sure
322 * we'll update it when the structure is changed, to avoid bugs like
323 * bug #85 introduced exactly in this way. */
324 #define initStaticStringObject(_var,_ptr) do { \
326 _var.type = REDIS_STRING; \
327 _var.encoding = REDIS_ENCODING_RAW; \
331 typedef struct redisDb
{
332 dict
*dict
; /* The keyspace for this DB */
333 dict
*expires
; /* Timeout of keys with a timeout set */
334 dict
*blocking_keys
; /* Keys with clients waiting for data (BLPOP) */
335 dict
*ready_keys
; /* Blocked keys that received a PUSH */
336 dict
*watched_keys
; /* WATCHED keys for MULTI/EXEC CAS */
340 /* Client MULTI/EXEC state */
341 typedef struct multiCmd
{
344 struct redisCommand
*cmd
;
347 typedef struct multiState
{
348 multiCmd
*commands
; /* Array of MULTI commands */
349 int count
; /* Total number of MULTI commands */
352 typedef struct blockingState
{
353 robj
**keys
; /* The key we are waiting to terminate a blocking
354 * operation such as BLPOP. Otherwise NULL. */
355 int count
; /* Number of blocking keys */
356 time_t timeout
; /* Blocking operation timeout. If UNIX current time
357 * is >= timeout then the operation timed out. */
358 robj
*target
; /* The key that should receive the element,
362 /* The following structure represents a node in the server.ready_keys list,
363 * where we accumulate all the keys that had clients blocked with a blocking
364 * operation such as B[LR]POP, but received new data in the context of the
365 * last executed command.
367 * After the execution of every command or script, we run this list to check
368 * if as a result we should serve data to clients blocked, unblocking them.
369 * Note that server.ready_keys will not have duplicates as there dictionary
370 * also called ready_keys in every structure representing a Redis database,
371 * where we make sure to remember if a given key was already added in the
372 * server.ready_keys list. */
373 typedef struct readyList
{
378 /* With multiplexing we need to take per-clinet state.
379 * Clients are taken in a liked list. */
380 typedef struct redisClient
{
385 size_t querybuf_peak
; /* Recent (100ms or more) peak of querybuf size */
388 struct redisCommand
*cmd
, *lastcmd
;
390 int multibulklen
; /* number of multi bulk arguments left to read */
391 long bulklen
; /* length of bulk argument in multi bulk request */
393 unsigned long reply_bytes
; /* Tot bytes of objects in reply list */
395 time_t ctime
; /* Client creation time */
396 time_t lastinteraction
; /* time of the last interaction, used for timeout */
397 time_t obuf_soft_limit_reached_time
;
398 int flags
; /* REDIS_SLAVE | REDIS_MONITOR | REDIS_MULTI ... */
399 int slaveseldb
; /* slave selected db, if this client is a slave */
400 int authenticated
; /* when requirepass is non-NULL */
401 int replstate
; /* replication state if this is a slave */
402 int repldbfd
; /* replication DB file descriptor */
403 long repldboff
; /* replication DB file offset */
404 off_t repldbsize
; /* replication DB file size */
405 int slave_listening_port
; /* As configured with: SLAVECONF listening-port */
406 multiState mstate
; /* MULTI/EXEC state */
407 blockingState bpop
; /* blocking state */
408 list
*io_keys
; /* Keys this client is waiting to be loaded from the
409 * swap file in order to continue. */
410 list
*watched_keys
; /* Keys WATCHED for MULTI/EXEC CAS */
411 dict
*pubsub_channels
; /* channels a client is interested in (SUBSCRIBE) */
412 list
*pubsub_patterns
; /* patterns a client is interested in (SUBSCRIBE) */
414 /* Response buffer */
416 char buf
[REDIS_REPLY_CHUNK_BYTES
];
424 struct sharedObjectsStruct
{
425 robj
*crlf
, *ok
, *err
, *emptybulk
, *czero
, *cone
, *cnegone
, *pong
, *space
,
426 *colon
, *nullbulk
, *nullmultibulk
, *queued
,
427 *emptymultibulk
, *wrongtypeerr
, *nokeyerr
, *syntaxerr
, *sameobjecterr
,
428 *outofrangeerr
, *noscripterr
, *loadingerr
, *slowscripterr
, *bgsaveerr
,
429 *masterdownerr
, *roslaveerr
, *execaborterr
,
430 *oomerr
, *plus
, *messagebulk
, *pmessagebulk
, *subscribebulk
,
431 *unsubscribebulk
, *psubscribebulk
, *punsubscribebulk
, *del
, *rpop
, *lpop
,
433 *select
[REDIS_SHARED_SELECT_CMDS
],
434 *integers
[REDIS_SHARED_INTEGERS
],
435 *mbulkhdr
[REDIS_SHARED_BULKHDR_LEN
], /* "*<value>\r\n" */
436 *bulkhdr
[REDIS_SHARED_BULKHDR_LEN
]; /* "$<value>\r\n" */
439 /* ZSETs use a specialized version of Skiplists */
440 typedef struct zskiplistNode
{
443 struct zskiplistNode
*backward
;
444 struct zskiplistLevel
{
445 struct zskiplistNode
*forward
;
450 typedef struct zskiplist
{
451 struct zskiplistNode
*header
, *tail
;
452 unsigned long length
;
456 typedef struct zset
{
461 typedef struct clientBufferLimitsConfig
{
462 unsigned long long hard_limit_bytes
;
463 unsigned long long soft_limit_bytes
;
464 time_t soft_limit_seconds
;
465 } clientBufferLimitsConfig
;
467 /* The redisOp structure defines a Redis Operation, that is an instance of
468 * a command with an argument vector, database ID, propagation target
469 * (REDIS_PROPAGATE_*), and command pointer.
471 * Currently only used to additionally propagate more commands to AOF/Replication
472 * after the propagation of the executed command. */
473 typedef struct redisOp
{
475 int argc
, dbid
, target
;
476 struct redisCommand
*cmd
;
479 /* Defines an array of Redis operations. There is an API to add to this
480 * structure in a easy way.
482 * redisOpArrayInit();
483 * redisOpArrayAppend();
484 * redisOpArrayFree();
486 typedef struct redisOpArray
{
491 /*-----------------------------------------------------------------------------
492 * Global server state
493 *----------------------------------------------------------------------------*/
498 dict
*commands
; /* Command table hash table */
500 unsigned lruclock
:22; /* Clock incrementing every minute, for LRU */
501 unsigned lruclock_padding
:10;
502 int shutdown_asap
; /* SHUTDOWN needed ASAP */
503 int activerehashing
; /* Incremental rehash in serverCron() */
504 char *requirepass
; /* Pass for AUTH command, or NULL */
505 char *pidfile
; /* PID file path */
506 int arch_bits
; /* 32 or 64 depending on sizeof(long) */
507 int cronloops
; /* Number of times the cron function run */
508 char runid
[REDIS_RUN_ID_SIZE
+1]; /* ID always different at every exec. */
509 int sentinel_mode
; /* True if this instance is a Sentinel. */
511 int port
; /* TCP listening port */
512 char *bindaddr
; /* Bind address or NULL */
513 char *unixsocket
; /* UNIX socket path */
514 mode_t unixsocketperm
; /* UNIX socket permission */
515 int ipfd
; /* TCP socket file descriptor */
516 int sofd
; /* Unix socket file descriptor */
517 list
*clients
; /* List of active clients */
518 list
*clients_to_close
; /* Clients to close asynchronously */
519 list
*slaves
, *monitors
; /* List of slaves and MONITORs */
520 redisClient
*current_client
; /* Current client, only used on crash report */
521 char neterr
[ANET_ERR_LEN
]; /* Error buffer for anet.c */
522 /* RDB / AOF loading information */
523 int loading
; /* We are loading data from disk if true */
524 off_t loading_total_bytes
;
525 off_t loading_loaded_bytes
;
526 time_t loading_start_time
;
527 /* Fast pointers to often looked up command */
528 struct redisCommand
*delCommand
, *multiCommand
, *lpushCommand
, *lpopCommand
,
530 /* Fields used only for stats */
531 time_t stat_starttime
; /* Server start time */
532 long long stat_numcommands
; /* Number of processed commands */
533 long long stat_numconnections
; /* Number of connections received */
534 long long stat_expiredkeys
; /* Number of expired keys */
535 long long stat_evictedkeys
; /* Number of evicted keys (maxmemory) */
536 long long stat_keyspace_hits
; /* Number of successful lookups of keys */
537 long long stat_keyspace_misses
; /* Number of failed lookups of keys */
538 size_t stat_peak_memory
; /* Max used memory record */
539 long long stat_fork_time
; /* Time needed to perform latets fork() */
540 long long stat_rejected_conn
; /* Clients rejected because of maxclients */
541 list
*slowlog
; /* SLOWLOG list of commands */
542 long long slowlog_entry_id
; /* SLOWLOG current entry ID */
543 long long slowlog_log_slower_than
; /* SLOWLOG time limit (to get logged) */
544 unsigned long slowlog_max_len
; /* SLOWLOG max number of items logged */
545 /* The following two are used to track instantaneous "load" in terms
546 * of operations per second. */
547 long long ops_sec_last_sample_time
; /* Timestamp of last sample (in ms) */
548 long long ops_sec_last_sample_ops
; /* numcommands in last sample */
549 long long ops_sec_samples
[REDIS_OPS_SEC_SAMPLES
];
552 int verbosity
; /* Loglevel in redis.conf */
553 int maxidletime
; /* Client timeout in seconds */
554 size_t client_max_querybuf_len
; /* Limit for client query buffer length */
555 int dbnum
; /* Total number of configured DBs */
556 int daemonize
; /* True if running as a daemon */
557 clientBufferLimitsConfig client_obuf_limits
[REDIS_CLIENT_LIMIT_NUM_CLASSES
];
558 /* AOF persistence */
559 int aof_state
; /* REDIS_AOF_(ON|OFF|WAIT_REWRITE) */
560 int aof_fsync
; /* Kind of fsync() policy */
561 char *aof_filename
; /* Name of the AOF file */
562 int aof_no_fsync_on_rewrite
; /* Don't fsync if a rewrite is in prog. */
563 int aof_rewrite_perc
; /* Rewrite AOF if % growth is > M and... */
564 off_t aof_rewrite_min_size
; /* the AOF file is at least N bytes. */
565 off_t aof_rewrite_base_size
; /* AOF size on latest startup or rewrite. */
566 off_t aof_current_size
; /* AOF current size. */
567 int aof_rewrite_scheduled
; /* Rewrite once BGSAVE terminates. */
568 pid_t aof_child_pid
; /* PID if rewriting process */
569 list
*aof_rewrite_buf_blocks
; /* Hold changes during an AOF rewrite. */
570 sds aof_buf
; /* AOF buffer, written before entering the event loop */
571 int aof_fd
; /* File descriptor of currently selected AOF file */
572 int aof_selected_db
; /* Currently selected DB in AOF */
573 time_t aof_flush_postponed_start
; /* UNIX time of postponed AOF flush */
574 time_t aof_last_fsync
; /* UNIX time of last fsync() */
575 time_t aof_rewrite_time_last
; /* Time used by last AOF rewrite run. */
576 time_t aof_rewrite_time_start
; /* Current AOF rewrite start time. */
577 int aof_lastbgrewrite_status
; /* REDIS_OK or REDIS_ERR */
578 unsigned long aof_delayed_fsync
; /* delayed AOF fsync() counter */
579 /* RDB persistence */
580 long long dirty
; /* Changes to DB from the last save */
581 long long dirty_before_bgsave
; /* Used to restore dirty on failed BGSAVE */
582 pid_t rdb_child_pid
; /* PID of RDB saving child */
583 struct saveparam
*saveparams
; /* Save points array for RDB */
584 int saveparamslen
; /* Number of saving points */
585 char *rdb_filename
; /* Name of RDB file */
586 int rdb_compression
; /* Use compression in RDB? */
587 int rdb_checksum
; /* Use RDB checksum? */
588 time_t lastsave
; /* Unix time of last save succeeede */
589 time_t rdb_save_time_last
; /* Time used by last RDB save run. */
590 time_t rdb_save_time_start
; /* Current RDB save start time. */
591 int lastbgsave_status
; /* REDIS_OK or REDIS_ERR */
592 int stop_writes_on_bgsave_err
; /* Don't allow writes if can't BGSAVE */
593 /* Propagation of commands in AOF / replication */
594 redisOpArray also_propagate
; /* Additional command to propagate. */
596 char *logfile
; /* Path of log file */
597 int syslog_enabled
; /* Is syslog enabled? */
598 char *syslog_ident
; /* Syslog ident */
599 int syslog_facility
; /* Syslog facility */
600 /* Slave specific fields */
601 char *masterauth
; /* AUTH with this password with master */
602 char *masterhost
; /* Hostname of master */
603 int masterport
; /* Port of master */
604 int repl_ping_slave_period
; /* Master pings the slave every N seconds */
605 int repl_timeout
; /* Timeout after N seconds of master idle */
606 redisClient
*master
; /* Client that is master for this slave */
607 int repl_syncio_timeout
; /* Timeout for synchronous I/O calls */
608 int repl_state
; /* Replication status if the instance is a slave */
609 off_t repl_transfer_size
; /* Size of RDB to read from master during sync. */
610 off_t repl_transfer_read
; /* Amount of RDB read from master during sync. */
611 off_t repl_transfer_last_fsync_off
; /* Offset when we fsync-ed last time. */
612 int repl_transfer_s
; /* Slave -> Master SYNC socket */
613 int repl_transfer_fd
; /* Slave -> Master SYNC temp file descriptor */
614 char *repl_transfer_tmpfile
; /* Slave-> master SYNC temp file name */
615 time_t repl_transfer_lastio
; /* Unix time of the latest read, for timeout */
616 int repl_serve_stale_data
; /* Serve stale data when link is down? */
617 int repl_slave_ro
; /* Slave is read only? */
618 time_t repl_down_since
; /* Unix time at which link with master went down */
619 int slave_priority
; /* Reported in INFO and used by Sentinel. */
621 unsigned int maxclients
; /* Max number of simultaneous clients */
622 unsigned long long maxmemory
; /* Max number of memory bytes to use */
623 int maxmemory_policy
; /* Policy for key evition */
624 int maxmemory_samples
; /* Pricision of random sampling */
625 /* Blocked clients */
626 unsigned int bpop_blocked_clients
; /* Number of clients blocked by lists */
627 list
*unblocked_clients
; /* list of clients to unblock before next loop */
628 list
*ready_keys
; /* List of readyList structures for BLPOP & co */
629 /* Sort parameters - qsort_r() is only available under BSD so we
630 * have to take this state global, in order to pass it to sortCompare() */
634 /* Zip structure config, see redis.conf for more information */
635 size_t hash_max_ziplist_entries
;
636 size_t hash_max_ziplist_value
;
637 size_t list_max_ziplist_entries
;
638 size_t list_max_ziplist_value
;
639 size_t set_max_intset_entries
;
640 size_t zset_max_ziplist_entries
;
641 size_t zset_max_ziplist_value
;
642 time_t unixtime
; /* Unix time sampled every second. */
644 dict
*pubsub_channels
; /* Map channels to list of subscribed clients */
645 list
*pubsub_patterns
; /* A list of pubsub_patterns */
647 lua_State
*lua
; /* The Lua interpreter. We use just one for all clients */
648 redisClient
*lua_client
; /* The "fake client" to query Redis from Lua */
649 redisClient
*lua_caller
; /* The client running EVAL right now, or NULL */
650 dict
*lua_scripts
; /* A dictionary of SHA1 -> Lua scripts */
651 long long lua_time_limit
; /* Script timeout in seconds */
652 long long lua_time_start
; /* Start time of script */
653 int lua_write_dirty
; /* True if a write command was called during the
654 execution of the current script. */
655 int lua_random_dirty
; /* True if a random command was called during the
656 execution of the current script. */
657 int lua_timedout
; /* True if we reached the time limit for script
659 int lua_kill
; /* Kill the script if true. */
660 /* Assert & bug reportign */
664 int bug_report_start
; /* True if bug report header was already logged. */
665 int watchdog_period
; /* Software watchdog period in ms. 0 = off */
668 typedef struct pubsubPattern
{
673 typedef void redisCommandProc(redisClient
*c
);
674 typedef int *redisGetKeysProc(struct redisCommand
*cmd
, robj
**argv
, int argc
, int *numkeys
, int flags
);
675 struct redisCommand
{
677 redisCommandProc
*proc
;
679 char *sflags
; /* Flags as string represenation, one char per flag. */
680 int flags
; /* The actual flags, obtained from the 'sflags' field. */
681 /* Use a function to determine keys arguments in a command line. */
682 redisGetKeysProc
*getkeys_proc
;
683 /* What keys should be loaded in background when calling this command? */
684 int firstkey
; /* The first argument that's a key (0 = no keys) */
685 int lastkey
; /* THe last argument that's a key */
686 int keystep
; /* The step between first and last key */
687 long long microseconds
, calls
;
690 struct redisFunctionSym
{
692 unsigned long pointer
;
695 typedef struct _redisSortObject
{
703 typedef struct _redisSortOperation
{
706 } redisSortOperation
;
708 /* Structure to hold list iteration abstraction. */
711 unsigned char encoding
;
712 unsigned char direction
; /* Iteration direction */
717 /* Structure for an entry while iterating over a list. */
719 listTypeIterator
*li
;
720 unsigned char *zi
; /* Entry in ziplist */
721 listNode
*ln
; /* Entry in linked list */
724 /* Structure to hold set iteration abstraction. */
728 int ii
; /* intset iterator */
732 /* Structure to hold hash iteration abstration. Note that iteration over
733 * hashes involves both fields and values. Because it is possible that
734 * not both are required, store pointers in the iterator to avoid
735 * unnecessary memory allocation for fields/values. */
740 unsigned char *fptr
, *vptr
;
746 #define REDIS_HASH_KEY 1
747 #define REDIS_HASH_VALUE 2
749 /*-----------------------------------------------------------------------------
750 * Extern declarations
751 *----------------------------------------------------------------------------*/
753 extern struct redisServer server
;
754 extern struct sharedObjectsStruct shared
;
755 extern dictType setDictType
;
756 extern dictType zsetDictType
;
757 extern dictType dbDictType
;
758 extern dictType shaScriptObjectDictType
;
759 extern double R_Zero
, R_PosInf
, R_NegInf
, R_Nan
;
760 extern dictType hashDictType
;
762 /*-----------------------------------------------------------------------------
763 * Functions prototypes
764 *----------------------------------------------------------------------------*/
767 long long ustime(void);
768 long long mstime(void);
769 void getRandomHexChars(char *p
, unsigned int len
);
770 uint64_t crc64(uint64_t crc
, const unsigned char *s
, uint64_t l
);
771 void exitFromChild(int retcode
);
773 /* networking.c -- Networking and Client related operations */
774 redisClient
*createClient(int fd
);
775 void closeTimedoutClients(void);
776 void freeClient(redisClient
*c
);
777 void resetClient(redisClient
*c
);
778 void sendReplyToClient(aeEventLoop
*el
, int fd
, void *privdata
, int mask
);
779 void addReply(redisClient
*c
, robj
*obj
);
780 void *addDeferredMultiBulkLength(redisClient
*c
);
781 void setDeferredMultiBulkLength(redisClient
*c
, void *node
, long length
);
782 void addReplySds(redisClient
*c
, sds s
);
783 void processInputBuffer(redisClient
*c
);
784 void acceptTcpHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
);
785 void acceptUnixHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
);
786 void readQueryFromClient(aeEventLoop
*el
, int fd
, void *privdata
, int mask
);
787 void addReplyBulk(redisClient
*c
, robj
*obj
);
788 void addReplyBulkCString(redisClient
*c
, char *s
);
789 void addReplyBulkCBuffer(redisClient
*c
, void *p
, size_t len
);
790 void addReplyBulkLongLong(redisClient
*c
, long long ll
);
791 void acceptHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
);
792 void addReply(redisClient
*c
, robj
*obj
);
793 void addReplySds(redisClient
*c
, sds s
);
794 void addReplyError(redisClient
*c
, char *err
);
795 void addReplyStatus(redisClient
*c
, char *status
);
796 void addReplyDouble(redisClient
*c
, double d
);
797 void addReplyLongLong(redisClient
*c
, long long ll
);
798 void addReplyMultiBulkLen(redisClient
*c
, long length
);
799 void copyClientOutputBuffer(redisClient
*dst
, redisClient
*src
);
800 void *dupClientReplyValue(void *o
);
801 void getClientsMaxBuffers(unsigned long *longest_output_list
,
802 unsigned long *biggest_input_buffer
);
803 sds
getClientInfoString(redisClient
*client
);
804 sds
getAllClientsInfoString(void);
805 void rewriteClientCommandVector(redisClient
*c
, int argc
, ...);
806 void rewriteClientCommandArgument(redisClient
*c
, int i
, robj
*newval
);
807 unsigned long getClientOutputBufferMemoryUsage(redisClient
*c
);
808 void freeClientsInAsyncFreeQueue(void);
809 void asyncCloseClientOnOutputBufferLimitReached(redisClient
*c
);
810 int getClientLimitClassByName(char *name
);
811 char *getClientLimitClassName(int class);
812 void flushSlavesOutputBuffers(void);
813 void disconnectSlaves(void);
816 void addReplyErrorFormat(redisClient
*c
, const char *fmt
, ...)
817 __attribute__((format(printf
, 2, 3)));
818 void addReplyStatusFormat(redisClient
*c
, const char *fmt
, ...)
819 __attribute__((format(printf
, 2, 3)));
821 void addReplyErrorFormat(redisClient
*c
, const char *fmt
, ...);
822 void addReplyStatusFormat(redisClient
*c
, const char *fmt
, ...);
826 void listTypeTryConversion(robj
*subject
, robj
*value
);
827 void listTypePush(robj
*subject
, robj
*value
, int where
);
828 robj
*listTypePop(robj
*subject
, int where
);
829 unsigned long listTypeLength(robj
*subject
);
830 listTypeIterator
*listTypeInitIterator(robj
*subject
, long index
, unsigned char direction
);
831 void listTypeReleaseIterator(listTypeIterator
*li
);
832 int listTypeNext(listTypeIterator
*li
, listTypeEntry
*entry
);
833 robj
*listTypeGet(listTypeEntry
*entry
);
834 void listTypeInsert(listTypeEntry
*entry
, robj
*value
, int where
);
835 int listTypeEqual(listTypeEntry
*entry
, robj
*o
);
836 void listTypeDelete(listTypeEntry
*entry
);
837 void listTypeConvert(robj
*subject
, int enc
);
838 void unblockClientWaitingData(redisClient
*c
);
839 void handleClientsBlockedOnLists(void);
840 void popGenericCommand(redisClient
*c
, int where
);
842 /* MULTI/EXEC/WATCH... */
843 void unwatchAllKeys(redisClient
*c
);
844 void initClientMultiState(redisClient
*c
);
845 void freeClientMultiState(redisClient
*c
);
846 void queueMultiCommand(redisClient
*c
);
847 void touchWatchedKey(redisDb
*db
, robj
*key
);
848 void touchWatchedKeysOnFlush(int dbid
);
849 void discardTransaction(redisClient
*c
);
850 void flagTransaction(redisClient
*c
);
852 /* Redis object implementation */
853 void decrRefCount(void *o
);
854 void incrRefCount(robj
*o
);
855 robj
*resetRefCount(robj
*obj
);
856 void freeStringObject(robj
*o
);
857 void freeListObject(robj
*o
);
858 void freeSetObject(robj
*o
);
859 void freeZsetObject(robj
*o
);
860 void freeHashObject(robj
*o
);
861 robj
*createObject(int type
, void *ptr
);
862 robj
*createStringObject(char *ptr
, size_t len
);
863 robj
*dupStringObject(robj
*o
);
864 int isObjectRepresentableAsLongLong(robj
*o
, long long *llongval
);
865 robj
*tryObjectEncoding(robj
*o
);
866 robj
*getDecodedObject(robj
*o
);
867 size_t stringObjectLen(robj
*o
);
868 robj
*createStringObjectFromLongLong(long long value
);
869 robj
*createStringObjectFromLongDouble(long double value
);
870 robj
*createListObject(void);
871 robj
*createZiplistObject(void);
872 robj
*createSetObject(void);
873 robj
*createIntsetObject(void);
874 robj
*createHashObject(void);
875 robj
*createZsetObject(void);
876 robj
*createZsetZiplistObject(void);
877 int getLongFromObjectOrReply(redisClient
*c
, robj
*o
, long *target
, const char *msg
);
878 int checkType(redisClient
*c
, robj
*o
, int type
);
879 int getLongLongFromObjectOrReply(redisClient
*c
, robj
*o
, long long *target
, const char *msg
);
880 int getDoubleFromObjectOrReply(redisClient
*c
, robj
*o
, double *target
, const char *msg
);
881 int getLongLongFromObject(robj
*o
, long long *target
);
882 int getLongDoubleFromObject(robj
*o
, long double *target
);
883 int getLongDoubleFromObjectOrReply(redisClient
*c
, robj
*o
, long double *target
, const char *msg
);
884 char *strEncoding(int encoding
);
885 int compareStringObjects(robj
*a
, robj
*b
);
886 int equalStringObjects(robj
*a
, robj
*b
);
887 unsigned long estimateObjectIdleTime(robj
*o
);
889 /* Synchronous I/O with timeout */
890 ssize_t
syncWrite(int fd
, char *ptr
, ssize_t size
, long long timeout
);
891 ssize_t
syncRead(int fd
, char *ptr
, ssize_t size
, long long timeout
);
892 ssize_t
syncReadLine(int fd
, char *ptr
, ssize_t size
, long long timeout
);
895 void replicationFeedSlaves(list
*slaves
, int dictid
, robj
**argv
, int argc
);
896 void replicationFeedMonitors(redisClient
*c
, list
*monitors
, int dictid
, robj
**argv
, int argc
);
897 void updateSlavesWaitingBgsave(int bgsaveerr
);
898 void replicationCron(void);
900 /* Generic persistence functions */
901 void startLoading(FILE *fp
);
902 void loadingProgress(off_t pos
);
903 void stopLoading(void);
905 /* RDB persistence */
908 /* AOF persistence */
909 void flushAppendOnlyFile(int force
);
910 void feedAppendOnlyFile(struct redisCommand
*cmd
, int dictid
, robj
**argv
, int argc
);
911 void aofRemoveTempFile(pid_t childpid
);
912 int rewriteAppendOnlyFileBackground(void);
913 int loadAppendOnlyFile(char *filename
);
914 void stopAppendOnly(void);
915 int startAppendOnly(void);
916 void backgroundRewriteDoneHandler(int exitcode
, int bysignal
);
917 void aofRewriteBufferReset(void);
918 unsigned long aofRewriteBufferSize(void);
920 /* Sorted sets data type */
922 /* Struct to hold a inclusive/exclusive range spec. */
925 int minex
, maxex
; /* are min or max exclusive? */
928 zskiplist
*zslCreate(void);
929 void zslFree(zskiplist
*zsl
);
930 zskiplistNode
*zslInsert(zskiplist
*zsl
, double score
, robj
*obj
);
931 unsigned char *zzlInsert(unsigned char *zl
, robj
*ele
, double score
);
932 int zslDelete(zskiplist
*zsl
, double score
, robj
*obj
);
933 zskiplistNode
*zslFirstInRange(zskiplist
*zsl
, zrangespec range
);
934 double zzlGetScore(unsigned char *sptr
);
935 void zzlNext(unsigned char *zl
, unsigned char **eptr
, unsigned char **sptr
);
936 void zzlPrev(unsigned char *zl
, unsigned char **eptr
, unsigned char **sptr
);
937 unsigned int zsetLength(robj
*zobj
);
938 void zsetConvert(robj
*zobj
, int encoding
);
941 int freeMemoryIfNeeded(void);
942 int processCommand(redisClient
*c
);
943 void setupSignalHandlers(void);
944 struct redisCommand
*lookupCommand(sds name
);
945 struct redisCommand
*lookupCommandByCString(char *s
);
946 void call(redisClient
*c
, int flags
);
947 void propagate(struct redisCommand
*cmd
, int dbid
, robj
**argv
, int argc
, int flags
);
948 void alsoPropagate(struct redisCommand
*cmd
, int dbid
, robj
**argv
, int argc
, int target
);
949 int prepareForShutdown();
950 void redisLog(int level
, const char *fmt
, ...);
951 void redisLogRaw(int level
, const char *msg
);
952 void redisLogFromHandler(int level
, const char *msg
);
954 void updateDictResizePolicy(void);
955 int htNeedsResize(dict
*dict
);
956 void oom(const char *msg
);
957 void populateCommandTable(void);
958 void resetCommandTableStats(void);
961 robj
*setTypeCreate(robj
*value
);
962 int setTypeAdd(robj
*subject
, robj
*value
);
963 int setTypeRemove(robj
*subject
, robj
*value
);
964 int setTypeIsMember(robj
*subject
, robj
*value
);
965 setTypeIterator
*setTypeInitIterator(robj
*subject
);
966 void setTypeReleaseIterator(setTypeIterator
*si
);
967 int setTypeNext(setTypeIterator
*si
, robj
**objele
, int64_t *llele
);
968 robj
*setTypeNextObject(setTypeIterator
*si
);
969 int setTypeRandomElement(robj
*setobj
, robj
**objele
, int64_t *llele
);
970 unsigned long setTypeSize(robj
*subject
);
971 void setTypeConvert(robj
*subject
, int enc
);
974 void hashTypeConvert(robj
*o
, int enc
);
975 void hashTypeTryConversion(robj
*subject
, robj
**argv
, int start
, int end
);
976 void hashTypeTryObjectEncoding(robj
*subject
, robj
**o1
, robj
**o2
);
977 robj
*hashTypeGetObject(robj
*o
, robj
*key
);
978 int hashTypeExists(robj
*o
, robj
*key
);
979 int hashTypeSet(robj
*o
, robj
*key
, robj
*value
);
980 int hashTypeDelete(robj
*o
, robj
*key
);
981 unsigned long hashTypeLength(robj
*o
);
982 hashTypeIterator
*hashTypeInitIterator(robj
*subject
);
983 void hashTypeReleaseIterator(hashTypeIterator
*hi
);
984 int hashTypeNext(hashTypeIterator
*hi
);
985 void hashTypeCurrentFromZiplist(hashTypeIterator
*hi
, int what
,
986 unsigned char **vstr
,
989 void hashTypeCurrentFromHashTable(hashTypeIterator
*hi
, int what
, robj
**dst
);
990 robj
*hashTypeCurrentObject(hashTypeIterator
*hi
, int what
);
991 robj
*hashTypeLookupWriteOrCreate(redisClient
*c
, robj
*key
);
994 int pubsubUnsubscribeAllChannels(redisClient
*c
, int notify
);
995 int pubsubUnsubscribeAllPatterns(redisClient
*c
, int notify
);
996 void freePubsubPattern(void *p
);
997 int listMatchPubsubPattern(void *a
, void *b
);
998 int pubsubPublishMessage(robj
*channel
, robj
*message
);
1001 void loadServerConfig(char *filename
, char *options
);
1002 void appendServerSaveParams(time_t seconds
, int changes
);
1003 void resetServerSaveParams();
1005 /* db.c -- Keyspace access API */
1006 int removeExpire(redisDb
*db
, robj
*key
);
1007 void propagateExpire(redisDb
*db
, robj
*key
);
1008 int expireIfNeeded(redisDb
*db
, robj
*key
);
1009 long long getExpire(redisDb
*db
, robj
*key
);
1010 void setExpire(redisDb
*db
, robj
*key
, long long when
);
1011 robj
*lookupKey(redisDb
*db
, robj
*key
);
1012 robj
*lookupKeyRead(redisDb
*db
, robj
*key
);
1013 robj
*lookupKeyWrite(redisDb
*db
, robj
*key
);
1014 robj
*lookupKeyReadOrReply(redisClient
*c
, robj
*key
, robj
*reply
);
1015 robj
*lookupKeyWriteOrReply(redisClient
*c
, robj
*key
, robj
*reply
);
1016 void dbAdd(redisDb
*db
, robj
*key
, robj
*val
);
1017 void dbOverwrite(redisDb
*db
, robj
*key
, robj
*val
);
1018 void setKey(redisDb
*db
, robj
*key
, robj
*val
);
1019 int dbExists(redisDb
*db
, robj
*key
);
1020 robj
*dbRandomKey(redisDb
*db
);
1021 int dbDelete(redisDb
*db
, robj
*key
);
1022 long long emptyDb();
1023 int selectDb(redisClient
*c
, int id
);
1024 void signalModifiedKey(redisDb
*db
, robj
*key
);
1025 void signalFlushedDb(int dbid
);
1026 unsigned int GetKeysInSlot(unsigned int hashslot
, robj
**keys
, unsigned int count
);
1028 /* API to get key arguments from commands */
1029 #define REDIS_GETKEYS_ALL 0
1030 #define REDIS_GETKEYS_PRELOAD 1
1031 int *getKeysFromCommand(struct redisCommand
*cmd
, robj
**argv
, int argc
, int *numkeys
, int flags
);
1032 void getKeysFreeResult(int *result
);
1033 int *noPreloadGetKeys(struct redisCommand
*cmd
,robj
**argv
, int argc
, int *numkeys
, int flags
);
1034 int *renameGetKeys(struct redisCommand
*cmd
,robj
**argv
, int argc
, int *numkeys
, int flags
);
1035 int *zunionInterGetKeys(struct redisCommand
*cmd
,robj
**argv
, int argc
, int *numkeys
, int flags
);
1038 void initSentinelConfig(void);
1039 void initSentinel(void);
1040 void sentinelTimer(void);
1041 char *sentinelHandleConfiguration(char **argv
, int argc
);
1044 void scriptingInit(void);
1047 char *redisGitSHA1(void);
1048 char *redisGitDirty(void);
1050 /* Commands prototypes */
1051 void authCommand(redisClient
*c
);
1052 void pingCommand(redisClient
*c
);
1053 void echoCommand(redisClient
*c
);
1054 void setCommand(redisClient
*c
);
1055 void setnxCommand(redisClient
*c
);
1056 void setexCommand(redisClient
*c
);
1057 void psetexCommand(redisClient
*c
);
1058 void getCommand(redisClient
*c
);
1059 void delCommand(redisClient
*c
);
1060 void existsCommand(redisClient
*c
);
1061 void setbitCommand(redisClient
*c
);
1062 void getbitCommand(redisClient
*c
);
1063 void setrangeCommand(redisClient
*c
);
1064 void getrangeCommand(redisClient
*c
);
1065 void incrCommand(redisClient
*c
);
1066 void decrCommand(redisClient
*c
);
1067 void incrbyCommand(redisClient
*c
);
1068 void decrbyCommand(redisClient
*c
);
1069 void incrbyfloatCommand(redisClient
*c
);
1070 void selectCommand(redisClient
*c
);
1071 void randomkeyCommand(redisClient
*c
);
1072 void keysCommand(redisClient
*c
);
1073 void dbsizeCommand(redisClient
*c
);
1074 void lastsaveCommand(redisClient
*c
);
1075 void saveCommand(redisClient
*c
);
1076 void bgsaveCommand(redisClient
*c
);
1077 void bgrewriteaofCommand(redisClient
*c
);
1078 void shutdownCommand(redisClient
*c
);
1079 void moveCommand(redisClient
*c
);
1080 void renameCommand(redisClient
*c
);
1081 void renamenxCommand(redisClient
*c
);
1082 void lpushCommand(redisClient
*c
);
1083 void rpushCommand(redisClient
*c
);
1084 void lpushxCommand(redisClient
*c
);
1085 void rpushxCommand(redisClient
*c
);
1086 void linsertCommand(redisClient
*c
);
1087 void lpopCommand(redisClient
*c
);
1088 void rpopCommand(redisClient
*c
);
1089 void llenCommand(redisClient
*c
);
1090 void lindexCommand(redisClient
*c
);
1091 void lrangeCommand(redisClient
*c
);
1092 void ltrimCommand(redisClient
*c
);
1093 void typeCommand(redisClient
*c
);
1094 void lsetCommand(redisClient
*c
);
1095 void saddCommand(redisClient
*c
);
1096 void sremCommand(redisClient
*c
);
1097 void smoveCommand(redisClient
*c
);
1098 void sismemberCommand(redisClient
*c
);
1099 void scardCommand(redisClient
*c
);
1100 void spopCommand(redisClient
*c
);
1101 void srandmemberCommand(redisClient
*c
);
1102 void sinterCommand(redisClient
*c
);
1103 void sinterstoreCommand(redisClient
*c
);
1104 void sunionCommand(redisClient
*c
);
1105 void sunionstoreCommand(redisClient
*c
);
1106 void sdiffCommand(redisClient
*c
);
1107 void sdiffstoreCommand(redisClient
*c
);
1108 void syncCommand(redisClient
*c
);
1109 void flushdbCommand(redisClient
*c
);
1110 void flushallCommand(redisClient
*c
);
1111 void sortCommand(redisClient
*c
);
1112 void lremCommand(redisClient
*c
);
1113 void rpoplpushCommand(redisClient
*c
);
1114 void infoCommand(redisClient
*c
);
1115 void mgetCommand(redisClient
*c
);
1116 void monitorCommand(redisClient
*c
);
1117 void expireCommand(redisClient
*c
);
1118 void expireatCommand(redisClient
*c
);
1119 void pexpireCommand(redisClient
*c
);
1120 void pexpireatCommand(redisClient
*c
);
1121 void getsetCommand(redisClient
*c
);
1122 void ttlCommand(redisClient
*c
);
1123 void pttlCommand(redisClient
*c
);
1124 void persistCommand(redisClient
*c
);
1125 void slaveofCommand(redisClient
*c
);
1126 void debugCommand(redisClient
*c
);
1127 void msetCommand(redisClient
*c
);
1128 void msetnxCommand(redisClient
*c
);
1129 void zaddCommand(redisClient
*c
);
1130 void zincrbyCommand(redisClient
*c
);
1131 void zrangeCommand(redisClient
*c
);
1132 void zrangebyscoreCommand(redisClient
*c
);
1133 void zrevrangebyscoreCommand(redisClient
*c
);
1134 void zcountCommand(redisClient
*c
);
1135 void zrevrangeCommand(redisClient
*c
);
1136 void zcardCommand(redisClient
*c
);
1137 void zremCommand(redisClient
*c
);
1138 void zscoreCommand(redisClient
*c
);
1139 void zremrangebyscoreCommand(redisClient
*c
);
1140 void multiCommand(redisClient
*c
);
1141 void execCommand(redisClient
*c
);
1142 void discardCommand(redisClient
*c
);
1143 void blpopCommand(redisClient
*c
);
1144 void brpopCommand(redisClient
*c
);
1145 void brpoplpushCommand(redisClient
*c
);
1146 void appendCommand(redisClient
*c
);
1147 void strlenCommand(redisClient
*c
);
1148 void zrankCommand(redisClient
*c
);
1149 void zrevrankCommand(redisClient
*c
);
1150 void hsetCommand(redisClient
*c
);
1151 void hsetnxCommand(redisClient
*c
);
1152 void hgetCommand(redisClient
*c
);
1153 void hmsetCommand(redisClient
*c
);
1154 void hmgetCommand(redisClient
*c
);
1155 void hdelCommand(redisClient
*c
);
1156 void hlenCommand(redisClient
*c
);
1157 void zremrangebyrankCommand(redisClient
*c
);
1158 void zunionstoreCommand(redisClient
*c
);
1159 void zinterstoreCommand(redisClient
*c
);
1160 void hkeysCommand(redisClient
*c
);
1161 void hvalsCommand(redisClient
*c
);
1162 void hgetallCommand(redisClient
*c
);
1163 void hexistsCommand(redisClient
*c
);
1164 void configCommand(redisClient
*c
);
1165 void hincrbyCommand(redisClient
*c
);
1166 void hincrbyfloatCommand(redisClient
*c
);
1167 void subscribeCommand(redisClient
*c
);
1168 void unsubscribeCommand(redisClient
*c
);
1169 void psubscribeCommand(redisClient
*c
);
1170 void punsubscribeCommand(redisClient
*c
);
1171 void publishCommand(redisClient
*c
);
1172 void watchCommand(redisClient
*c
);
1173 void unwatchCommand(redisClient
*c
);
1174 void restoreCommand(redisClient
*c
);
1175 void migrateCommand(redisClient
*c
);
1176 void dumpCommand(redisClient
*c
);
1177 void objectCommand(redisClient
*c
);
1178 void clientCommand(redisClient
*c
);
1179 void evalCommand(redisClient
*c
);
1180 void evalShaCommand(redisClient
*c
);
1181 void scriptCommand(redisClient
*c
);
1182 void timeCommand(redisClient
*c
);
1183 void bitopCommand(redisClient
*c
);
1184 void bitcountCommand(redisClient
*c
);
1185 void replconfCommand(redisClient
*c
);
1187 #if defined(__GNUC__)
1188 void *calloc(size_t count
, size_t size
) __attribute__ ((deprecated
));
1189 void free(void *ptr
) __attribute__ ((deprecated
));
1190 void *malloc(size_t size
) __attribute__ ((deprecated
));
1191 void *realloc(void *ptr
, size_t size
) __attribute__ ((deprecated
));
1194 /* Debugging stuff */
1195 void _redisAssertWithInfo(redisClient
*c
, robj
*o
, char *estr
, char *file
, int line
);
1196 void _redisAssert(char *estr
, char *file
, int line
);
1197 void _redisPanic(char *msg
, char *file
, int line
);
1198 void bugReportStart(void);
1199 void redisLogObjectDebugInfo(robj
*o
);
1200 void sigsegvHandler(int sig
, siginfo_t
*info
, void *secret
);
1201 sds
genRedisInfoString(char *section
);
1202 void enableWatchdog(int period
);
1203 void disableWatchdog(void);
1204 void watchdogScheduleSignal(int period
);
1205 void redisLogHexDump(int level
, char *descr
, void *value
, size_t len
);
1207 #define redisDebug(fmt, ...) \
1208 printf("DEBUG %s:%d > " fmt "\n", __FILE__, __LINE__, __VA_ARGS__)
1209 #define redisDebugMark() \
1210 printf("-- MARK %s:%d --\n", __FILE__, __LINE__)