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 dict
*keys
; /* The keys we are waiting to terminate a blocking
354 * operation such as BLPOP. Otherwise NULL. */
355 time_t timeout
; /* Blocking operation timeout. If UNIX current time
356 * is >= timeout then the operation timed out. */
357 robj
*target
; /* The key that should receive the element,
361 /* The following structure represents a node in the server.ready_keys list,
362 * where we accumulate all the keys that had clients blocked with a blocking
363 * operation such as B[LR]POP, but received new data in the context of the
364 * last executed command.
366 * After the execution of every command or script, we run this list to check
367 * if as a result we should serve data to clients blocked, unblocking them.
368 * Note that server.ready_keys will not have duplicates as there dictionary
369 * also called ready_keys in every structure representing a Redis database,
370 * where we make sure to remember if a given key was already added in the
371 * server.ready_keys list. */
372 typedef struct readyList
{
377 /* With multiplexing we need to take per-clinet state.
378 * Clients are taken in a liked list. */
379 typedef struct redisClient
{
384 size_t querybuf_peak
; /* Recent (100ms or more) peak of querybuf size */
387 struct redisCommand
*cmd
, *lastcmd
;
389 int multibulklen
; /* number of multi bulk arguments left to read */
390 long bulklen
; /* length of bulk argument in multi bulk request */
392 unsigned long reply_bytes
; /* Tot bytes of objects in reply list */
394 time_t ctime
; /* Client creation time */
395 time_t lastinteraction
; /* time of the last interaction, used for timeout */
396 time_t obuf_soft_limit_reached_time
;
397 int flags
; /* REDIS_SLAVE | REDIS_MONITOR | REDIS_MULTI ... */
398 int slaveseldb
; /* slave selected db, if this client is a slave */
399 int authenticated
; /* when requirepass is non-NULL */
400 int replstate
; /* replication state if this is a slave */
401 int repldbfd
; /* replication DB file descriptor */
402 long repldboff
; /* replication DB file offset */
403 off_t repldbsize
; /* replication DB file size */
404 int slave_listening_port
; /* As configured with: SLAVECONF listening-port */
405 multiState mstate
; /* MULTI/EXEC state */
406 blockingState bpop
; /* blocking state */
407 list
*io_keys
; /* Keys this client is waiting to be loaded from the
408 * swap file in order to continue. */
409 list
*watched_keys
; /* Keys WATCHED for MULTI/EXEC CAS */
410 dict
*pubsub_channels
; /* channels a client is interested in (SUBSCRIBE) */
411 list
*pubsub_patterns
; /* patterns a client is interested in (SUBSCRIBE) */
413 /* Response buffer */
415 char buf
[REDIS_REPLY_CHUNK_BYTES
];
423 struct sharedObjectsStruct
{
424 robj
*crlf
, *ok
, *err
, *emptybulk
, *czero
, *cone
, *cnegone
, *pong
, *space
,
425 *colon
, *nullbulk
, *nullmultibulk
, *queued
,
426 *emptymultibulk
, *wrongtypeerr
, *nokeyerr
, *syntaxerr
, *sameobjecterr
,
427 *outofrangeerr
, *noscripterr
, *loadingerr
, *slowscripterr
, *bgsaveerr
,
428 *masterdownerr
, *roslaveerr
, *execaborterr
,
429 *oomerr
, *plus
, *messagebulk
, *pmessagebulk
, *subscribebulk
,
430 *unsubscribebulk
, *psubscribebulk
, *punsubscribebulk
, *del
, *rpop
, *lpop
,
432 *select
[REDIS_SHARED_SELECT_CMDS
],
433 *integers
[REDIS_SHARED_INTEGERS
],
434 *mbulkhdr
[REDIS_SHARED_BULKHDR_LEN
], /* "*<value>\r\n" */
435 *bulkhdr
[REDIS_SHARED_BULKHDR_LEN
]; /* "$<value>\r\n" */
438 /* ZSETs use a specialized version of Skiplists */
439 typedef struct zskiplistNode
{
442 struct zskiplistNode
*backward
;
443 struct zskiplistLevel
{
444 struct zskiplistNode
*forward
;
449 typedef struct zskiplist
{
450 struct zskiplistNode
*header
, *tail
;
451 unsigned long length
;
455 typedef struct zset
{
460 typedef struct clientBufferLimitsConfig
{
461 unsigned long long hard_limit_bytes
;
462 unsigned long long soft_limit_bytes
;
463 time_t soft_limit_seconds
;
464 } clientBufferLimitsConfig
;
466 /* The redisOp structure defines a Redis Operation, that is an instance of
467 * a command with an argument vector, database ID, propagation target
468 * (REDIS_PROPAGATE_*), and command pointer.
470 * Currently only used to additionally propagate more commands to AOF/Replication
471 * after the propagation of the executed command. */
472 typedef struct redisOp
{
474 int argc
, dbid
, target
;
475 struct redisCommand
*cmd
;
478 /* Defines an array of Redis operations. There is an API to add to this
479 * structure in a easy way.
481 * redisOpArrayInit();
482 * redisOpArrayAppend();
483 * redisOpArrayFree();
485 typedef struct redisOpArray
{
490 /*-----------------------------------------------------------------------------
491 * Global server state
492 *----------------------------------------------------------------------------*/
497 dict
*commands
; /* Command table hash table */
499 unsigned lruclock
:22; /* Clock incrementing every minute, for LRU */
500 unsigned lruclock_padding
:10;
501 int shutdown_asap
; /* SHUTDOWN needed ASAP */
502 int activerehashing
; /* Incremental rehash in serverCron() */
503 char *requirepass
; /* Pass for AUTH command, or NULL */
504 char *pidfile
; /* PID file path */
505 int arch_bits
; /* 32 or 64 depending on sizeof(long) */
506 int cronloops
; /* Number of times the cron function run */
507 char runid
[REDIS_RUN_ID_SIZE
+1]; /* ID always different at every exec. */
508 int sentinel_mode
; /* True if this instance is a Sentinel. */
510 int port
; /* TCP listening port */
511 char *bindaddr
; /* Bind address or NULL */
512 char *unixsocket
; /* UNIX socket path */
513 mode_t unixsocketperm
; /* UNIX socket permission */
514 int ipfd
; /* TCP socket file descriptor */
515 int sofd
; /* Unix socket file descriptor */
516 list
*clients
; /* List of active clients */
517 list
*clients_to_close
; /* Clients to close asynchronously */
518 list
*slaves
, *monitors
; /* List of slaves and MONITORs */
519 redisClient
*current_client
; /* Current client, only used on crash report */
520 char neterr
[ANET_ERR_LEN
]; /* Error buffer for anet.c */
521 /* RDB / AOF loading information */
522 int loading
; /* We are loading data from disk if true */
523 off_t loading_total_bytes
;
524 off_t loading_loaded_bytes
;
525 time_t loading_start_time
;
526 /* Fast pointers to often looked up command */
527 struct redisCommand
*delCommand
, *multiCommand
, *lpushCommand
, *lpopCommand
,
529 /* Fields used only for stats */
530 time_t stat_starttime
; /* Server start time */
531 long long stat_numcommands
; /* Number of processed commands */
532 long long stat_numconnections
; /* Number of connections received */
533 long long stat_expiredkeys
; /* Number of expired keys */
534 long long stat_evictedkeys
; /* Number of evicted keys (maxmemory) */
535 long long stat_keyspace_hits
; /* Number of successful lookups of keys */
536 long long stat_keyspace_misses
; /* Number of failed lookups of keys */
537 size_t stat_peak_memory
; /* Max used memory record */
538 long long stat_fork_time
; /* Time needed to perform latets fork() */
539 long long stat_rejected_conn
; /* Clients rejected because of maxclients */
540 list
*slowlog
; /* SLOWLOG list of commands */
541 long long slowlog_entry_id
; /* SLOWLOG current entry ID */
542 long long slowlog_log_slower_than
; /* SLOWLOG time limit (to get logged) */
543 unsigned long slowlog_max_len
; /* SLOWLOG max number of items logged */
544 /* The following two are used to track instantaneous "load" in terms
545 * of operations per second. */
546 long long ops_sec_last_sample_time
; /* Timestamp of last sample (in ms) */
547 long long ops_sec_last_sample_ops
; /* numcommands in last sample */
548 long long ops_sec_samples
[REDIS_OPS_SEC_SAMPLES
];
551 int verbosity
; /* Loglevel in redis.conf */
552 int maxidletime
; /* Client timeout in seconds */
553 size_t client_max_querybuf_len
; /* Limit for client query buffer length */
554 int dbnum
; /* Total number of configured DBs */
555 int daemonize
; /* True if running as a daemon */
556 clientBufferLimitsConfig client_obuf_limits
[REDIS_CLIENT_LIMIT_NUM_CLASSES
];
557 /* AOF persistence */
558 int aof_state
; /* REDIS_AOF_(ON|OFF|WAIT_REWRITE) */
559 int aof_fsync
; /* Kind of fsync() policy */
560 char *aof_filename
; /* Name of the AOF file */
561 int aof_no_fsync_on_rewrite
; /* Don't fsync if a rewrite is in prog. */
562 int aof_rewrite_perc
; /* Rewrite AOF if % growth is > M and... */
563 off_t aof_rewrite_min_size
; /* the AOF file is at least N bytes. */
564 off_t aof_rewrite_base_size
; /* AOF size on latest startup or rewrite. */
565 off_t aof_current_size
; /* AOF current size. */
566 int aof_rewrite_scheduled
; /* Rewrite once BGSAVE terminates. */
567 pid_t aof_child_pid
; /* PID if rewriting process */
568 list
*aof_rewrite_buf_blocks
; /* Hold changes during an AOF rewrite. */
569 sds aof_buf
; /* AOF buffer, written before entering the event loop */
570 int aof_fd
; /* File descriptor of currently selected AOF file */
571 int aof_selected_db
; /* Currently selected DB in AOF */
572 time_t aof_flush_postponed_start
; /* UNIX time of postponed AOF flush */
573 time_t aof_last_fsync
; /* UNIX time of last fsync() */
574 time_t aof_rewrite_time_last
; /* Time used by last AOF rewrite run. */
575 time_t aof_rewrite_time_start
; /* Current AOF rewrite start time. */
576 int aof_lastbgrewrite_status
; /* REDIS_OK or REDIS_ERR */
577 unsigned long aof_delayed_fsync
; /* delayed AOF fsync() counter */
578 /* RDB persistence */
579 long long dirty
; /* Changes to DB from the last save */
580 long long dirty_before_bgsave
; /* Used to restore dirty on failed BGSAVE */
581 pid_t rdb_child_pid
; /* PID of RDB saving child */
582 struct saveparam
*saveparams
; /* Save points array for RDB */
583 int saveparamslen
; /* Number of saving points */
584 char *rdb_filename
; /* Name of RDB file */
585 int rdb_compression
; /* Use compression in RDB? */
586 int rdb_checksum
; /* Use RDB checksum? */
587 time_t lastsave
; /* Unix time of last save succeeede */
588 time_t rdb_save_time_last
; /* Time used by last RDB save run. */
589 time_t rdb_save_time_start
; /* Current RDB save start time. */
590 int lastbgsave_status
; /* REDIS_OK or REDIS_ERR */
591 int stop_writes_on_bgsave_err
; /* Don't allow writes if can't BGSAVE */
592 /* Propagation of commands in AOF / replication */
593 redisOpArray also_propagate
; /* Additional command to propagate. */
595 char *logfile
; /* Path of log file */
596 int syslog_enabled
; /* Is syslog enabled? */
597 char *syslog_ident
; /* Syslog ident */
598 int syslog_facility
; /* Syslog facility */
599 /* Slave specific fields */
600 char *masterauth
; /* AUTH with this password with master */
601 char *masterhost
; /* Hostname of master */
602 int masterport
; /* Port of master */
603 int repl_ping_slave_period
; /* Master pings the slave every N seconds */
604 int repl_timeout
; /* Timeout after N seconds of master idle */
605 redisClient
*master
; /* Client that is master for this slave */
606 int repl_syncio_timeout
; /* Timeout for synchronous I/O calls */
607 int repl_state
; /* Replication status if the instance is a slave */
608 off_t repl_transfer_size
; /* Size of RDB to read from master during sync. */
609 off_t repl_transfer_read
; /* Amount of RDB read from master during sync. */
610 off_t repl_transfer_last_fsync_off
; /* Offset when we fsync-ed last time. */
611 int repl_transfer_s
; /* Slave -> Master SYNC socket */
612 int repl_transfer_fd
; /* Slave -> Master SYNC temp file descriptor */
613 char *repl_transfer_tmpfile
; /* Slave-> master SYNC temp file name */
614 time_t repl_transfer_lastio
; /* Unix time of the latest read, for timeout */
615 int repl_serve_stale_data
; /* Serve stale data when link is down? */
616 int repl_slave_ro
; /* Slave is read only? */
617 time_t repl_down_since
; /* Unix time at which link with master went down */
618 int slave_priority
; /* Reported in INFO and used by Sentinel. */
620 unsigned int maxclients
; /* Max number of simultaneous clients */
621 unsigned long long maxmemory
; /* Max number of memory bytes to use */
622 int maxmemory_policy
; /* Policy for key evition */
623 int maxmemory_samples
; /* Pricision of random sampling */
624 /* Blocked clients */
625 unsigned int bpop_blocked_clients
; /* Number of clients blocked by lists */
626 list
*unblocked_clients
; /* list of clients to unblock before next loop */
627 list
*ready_keys
; /* List of readyList structures for BLPOP & co */
628 /* Sort parameters - qsort_r() is only available under BSD so we
629 * have to take this state global, in order to pass it to sortCompare() */
633 /* Zip structure config, see redis.conf for more information */
634 size_t hash_max_ziplist_entries
;
635 size_t hash_max_ziplist_value
;
636 size_t list_max_ziplist_entries
;
637 size_t list_max_ziplist_value
;
638 size_t set_max_intset_entries
;
639 size_t zset_max_ziplist_entries
;
640 size_t zset_max_ziplist_value
;
641 time_t unixtime
; /* Unix time sampled every second. */
643 dict
*pubsub_channels
; /* Map channels to list of subscribed clients */
644 list
*pubsub_patterns
; /* A list of pubsub_patterns */
646 lua_State
*lua
; /* The Lua interpreter. We use just one for all clients */
647 redisClient
*lua_client
; /* The "fake client" to query Redis from Lua */
648 redisClient
*lua_caller
; /* The client running EVAL right now, or NULL */
649 dict
*lua_scripts
; /* A dictionary of SHA1 -> Lua scripts */
650 long long lua_time_limit
; /* Script timeout in seconds */
651 long long lua_time_start
; /* Start time of script */
652 int lua_write_dirty
; /* True if a write command was called during the
653 execution of the current script. */
654 int lua_random_dirty
; /* True if a random command was called during the
655 execution of the current script. */
656 int lua_timedout
; /* True if we reached the time limit for script
658 int lua_kill
; /* Kill the script if true. */
659 /* Assert & bug reportign */
663 int bug_report_start
; /* True if bug report header was already logged. */
664 int watchdog_period
; /* Software watchdog period in ms. 0 = off */
667 typedef struct pubsubPattern
{
672 typedef void redisCommandProc(redisClient
*c
);
673 typedef int *redisGetKeysProc(struct redisCommand
*cmd
, robj
**argv
, int argc
, int *numkeys
, int flags
);
674 struct redisCommand
{
676 redisCommandProc
*proc
;
678 char *sflags
; /* Flags as string represenation, one char per flag. */
679 int flags
; /* The actual flags, obtained from the 'sflags' field. */
680 /* Use a function to determine keys arguments in a command line. */
681 redisGetKeysProc
*getkeys_proc
;
682 /* What keys should be loaded in background when calling this command? */
683 int firstkey
; /* The first argument that's a key (0 = no keys) */
684 int lastkey
; /* THe last argument that's a key */
685 int keystep
; /* The step between first and last key */
686 long long microseconds
, calls
;
689 struct redisFunctionSym
{
691 unsigned long pointer
;
694 typedef struct _redisSortObject
{
702 typedef struct _redisSortOperation
{
705 } redisSortOperation
;
707 /* Structure to hold list iteration abstraction. */
710 unsigned char encoding
;
711 unsigned char direction
; /* Iteration direction */
716 /* Structure for an entry while iterating over a list. */
718 listTypeIterator
*li
;
719 unsigned char *zi
; /* Entry in ziplist */
720 listNode
*ln
; /* Entry in linked list */
723 /* Structure to hold set iteration abstraction. */
727 int ii
; /* intset iterator */
731 /* Structure to hold hash iteration abstration. Note that iteration over
732 * hashes involves both fields and values. Because it is possible that
733 * not both are required, store pointers in the iterator to avoid
734 * unnecessary memory allocation for fields/values. */
739 unsigned char *fptr
, *vptr
;
745 #define REDIS_HASH_KEY 1
746 #define REDIS_HASH_VALUE 2
748 /*-----------------------------------------------------------------------------
749 * Extern declarations
750 *----------------------------------------------------------------------------*/
752 extern struct redisServer server
;
753 extern struct sharedObjectsStruct shared
;
754 extern dictType setDictType
;
755 extern dictType zsetDictType
;
756 extern dictType dbDictType
;
757 extern dictType shaScriptObjectDictType
;
758 extern double R_Zero
, R_PosInf
, R_NegInf
, R_Nan
;
759 extern dictType hashDictType
;
761 /*-----------------------------------------------------------------------------
762 * Functions prototypes
763 *----------------------------------------------------------------------------*/
766 long long ustime(void);
767 long long mstime(void);
768 void getRandomHexChars(char *p
, unsigned int len
);
769 uint64_t crc64(uint64_t crc
, const unsigned char *s
, uint64_t l
);
770 void exitFromChild(int retcode
);
772 /* networking.c -- Networking and Client related operations */
773 redisClient
*createClient(int fd
);
774 void closeTimedoutClients(void);
775 void freeClient(redisClient
*c
);
776 void resetClient(redisClient
*c
);
777 void sendReplyToClient(aeEventLoop
*el
, int fd
, void *privdata
, int mask
);
778 void addReply(redisClient
*c
, robj
*obj
);
779 void *addDeferredMultiBulkLength(redisClient
*c
);
780 void setDeferredMultiBulkLength(redisClient
*c
, void *node
, long length
);
781 void addReplySds(redisClient
*c
, sds s
);
782 void processInputBuffer(redisClient
*c
);
783 void acceptTcpHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
);
784 void acceptUnixHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
);
785 void readQueryFromClient(aeEventLoop
*el
, int fd
, void *privdata
, int mask
);
786 void addReplyBulk(redisClient
*c
, robj
*obj
);
787 void addReplyBulkCString(redisClient
*c
, char *s
);
788 void addReplyBulkCBuffer(redisClient
*c
, void *p
, size_t len
);
789 void addReplyBulkLongLong(redisClient
*c
, long long ll
);
790 void acceptHandler(aeEventLoop
*el
, int fd
, void *privdata
, int mask
);
791 void addReply(redisClient
*c
, robj
*obj
);
792 void addReplySds(redisClient
*c
, sds s
);
793 void addReplyError(redisClient
*c
, char *err
);
794 void addReplyStatus(redisClient
*c
, char *status
);
795 void addReplyDouble(redisClient
*c
, double d
);
796 void addReplyLongLong(redisClient
*c
, long long ll
);
797 void addReplyMultiBulkLen(redisClient
*c
, long length
);
798 void copyClientOutputBuffer(redisClient
*dst
, redisClient
*src
);
799 void *dupClientReplyValue(void *o
);
800 void getClientsMaxBuffers(unsigned long *longest_output_list
,
801 unsigned long *biggest_input_buffer
);
802 sds
getClientInfoString(redisClient
*client
);
803 sds
getAllClientsInfoString(void);
804 void rewriteClientCommandVector(redisClient
*c
, int argc
, ...);
805 void rewriteClientCommandArgument(redisClient
*c
, int i
, robj
*newval
);
806 unsigned long getClientOutputBufferMemoryUsage(redisClient
*c
);
807 void freeClientsInAsyncFreeQueue(void);
808 void asyncCloseClientOnOutputBufferLimitReached(redisClient
*c
);
809 int getClientLimitClassByName(char *name
);
810 char *getClientLimitClassName(int class);
811 void flushSlavesOutputBuffers(void);
812 void disconnectSlaves(void);
815 void addReplyErrorFormat(redisClient
*c
, const char *fmt
, ...)
816 __attribute__((format(printf
, 2, 3)));
817 void addReplyStatusFormat(redisClient
*c
, const char *fmt
, ...)
818 __attribute__((format(printf
, 2, 3)));
820 void addReplyErrorFormat(redisClient
*c
, const char *fmt
, ...);
821 void addReplyStatusFormat(redisClient
*c
, const char *fmt
, ...);
825 void listTypeTryConversion(robj
*subject
, robj
*value
);
826 void listTypePush(robj
*subject
, robj
*value
, int where
);
827 robj
*listTypePop(robj
*subject
, int where
);
828 unsigned long listTypeLength(robj
*subject
);
829 listTypeIterator
*listTypeInitIterator(robj
*subject
, long index
, unsigned char direction
);
830 void listTypeReleaseIterator(listTypeIterator
*li
);
831 int listTypeNext(listTypeIterator
*li
, listTypeEntry
*entry
);
832 robj
*listTypeGet(listTypeEntry
*entry
);
833 void listTypeInsert(listTypeEntry
*entry
, robj
*value
, int where
);
834 int listTypeEqual(listTypeEntry
*entry
, robj
*o
);
835 void listTypeDelete(listTypeEntry
*entry
);
836 void listTypeConvert(robj
*subject
, int enc
);
837 void unblockClientWaitingData(redisClient
*c
);
838 void handleClientsBlockedOnLists(void);
839 void popGenericCommand(redisClient
*c
, int where
);
841 /* MULTI/EXEC/WATCH... */
842 void unwatchAllKeys(redisClient
*c
);
843 void initClientMultiState(redisClient
*c
);
844 void freeClientMultiState(redisClient
*c
);
845 void queueMultiCommand(redisClient
*c
);
846 void touchWatchedKey(redisDb
*db
, robj
*key
);
847 void touchWatchedKeysOnFlush(int dbid
);
848 void discardTransaction(redisClient
*c
);
849 void flagTransaction(redisClient
*c
);
851 /* Redis object implementation */
852 void decrRefCount(void *o
);
853 void incrRefCount(robj
*o
);
854 robj
*resetRefCount(robj
*obj
);
855 void freeStringObject(robj
*o
);
856 void freeListObject(robj
*o
);
857 void freeSetObject(robj
*o
);
858 void freeZsetObject(robj
*o
);
859 void freeHashObject(robj
*o
);
860 robj
*createObject(int type
, void *ptr
);
861 robj
*createStringObject(char *ptr
, size_t len
);
862 robj
*dupStringObject(robj
*o
);
863 int isObjectRepresentableAsLongLong(robj
*o
, long long *llongval
);
864 robj
*tryObjectEncoding(robj
*o
);
865 robj
*getDecodedObject(robj
*o
);
866 size_t stringObjectLen(robj
*o
);
867 robj
*createStringObjectFromLongLong(long long value
);
868 robj
*createStringObjectFromLongDouble(long double value
);
869 robj
*createListObject(void);
870 robj
*createZiplistObject(void);
871 robj
*createSetObject(void);
872 robj
*createIntsetObject(void);
873 robj
*createHashObject(void);
874 robj
*createZsetObject(void);
875 robj
*createZsetZiplistObject(void);
876 int getLongFromObjectOrReply(redisClient
*c
, robj
*o
, long *target
, const char *msg
);
877 int checkType(redisClient
*c
, robj
*o
, int type
);
878 int getLongLongFromObjectOrReply(redisClient
*c
, robj
*o
, long long *target
, const char *msg
);
879 int getDoubleFromObjectOrReply(redisClient
*c
, robj
*o
, double *target
, const char *msg
);
880 int getLongLongFromObject(robj
*o
, long long *target
);
881 int getLongDoubleFromObject(robj
*o
, long double *target
);
882 int getLongDoubleFromObjectOrReply(redisClient
*c
, robj
*o
, long double *target
, const char *msg
);
883 char *strEncoding(int encoding
);
884 int compareStringObjects(robj
*a
, robj
*b
);
885 int equalStringObjects(robj
*a
, robj
*b
);
886 unsigned long estimateObjectIdleTime(robj
*o
);
888 /* Synchronous I/O with timeout */
889 ssize_t
syncWrite(int fd
, char *ptr
, ssize_t size
, long long timeout
);
890 ssize_t
syncRead(int fd
, char *ptr
, ssize_t size
, long long timeout
);
891 ssize_t
syncReadLine(int fd
, char *ptr
, ssize_t size
, long long timeout
);
894 void replicationFeedSlaves(list
*slaves
, int dictid
, robj
**argv
, int argc
);
895 void replicationFeedMonitors(redisClient
*c
, list
*monitors
, int dictid
, robj
**argv
, int argc
);
896 void updateSlavesWaitingBgsave(int bgsaveerr
);
897 void replicationCron(void);
899 /* Generic persistence functions */
900 void startLoading(FILE *fp
);
901 void loadingProgress(off_t pos
);
902 void stopLoading(void);
904 /* RDB persistence */
907 /* AOF persistence */
908 void flushAppendOnlyFile(int force
);
909 void feedAppendOnlyFile(struct redisCommand
*cmd
, int dictid
, robj
**argv
, int argc
);
910 void aofRemoveTempFile(pid_t childpid
);
911 int rewriteAppendOnlyFileBackground(void);
912 int loadAppendOnlyFile(char *filename
);
913 void stopAppendOnly(void);
914 int startAppendOnly(void);
915 void backgroundRewriteDoneHandler(int exitcode
, int bysignal
);
916 void aofRewriteBufferReset(void);
917 unsigned long aofRewriteBufferSize(void);
919 /* Sorted sets data type */
921 /* Struct to hold a inclusive/exclusive range spec. */
924 int minex
, maxex
; /* are min or max exclusive? */
927 zskiplist
*zslCreate(void);
928 void zslFree(zskiplist
*zsl
);
929 zskiplistNode
*zslInsert(zskiplist
*zsl
, double score
, robj
*obj
);
930 unsigned char *zzlInsert(unsigned char *zl
, robj
*ele
, double score
);
931 int zslDelete(zskiplist
*zsl
, double score
, robj
*obj
);
932 zskiplistNode
*zslFirstInRange(zskiplist
*zsl
, zrangespec range
);
933 double zzlGetScore(unsigned char *sptr
);
934 void zzlNext(unsigned char *zl
, unsigned char **eptr
, unsigned char **sptr
);
935 void zzlPrev(unsigned char *zl
, unsigned char **eptr
, unsigned char **sptr
);
936 unsigned int zsetLength(robj
*zobj
);
937 void zsetConvert(robj
*zobj
, int encoding
);
940 int freeMemoryIfNeeded(void);
941 int processCommand(redisClient
*c
);
942 void setupSignalHandlers(void);
943 struct redisCommand
*lookupCommand(sds name
);
944 struct redisCommand
*lookupCommandByCString(char *s
);
945 void call(redisClient
*c
, int flags
);
946 void propagate(struct redisCommand
*cmd
, int dbid
, robj
**argv
, int argc
, int flags
);
947 void alsoPropagate(struct redisCommand
*cmd
, int dbid
, robj
**argv
, int argc
, int target
);
948 int prepareForShutdown();
949 void redisLog(int level
, const char *fmt
, ...);
950 void redisLogRaw(int level
, const char *msg
);
951 void redisLogFromHandler(int level
, const char *msg
);
953 void updateDictResizePolicy(void);
954 int htNeedsResize(dict
*dict
);
955 void oom(const char *msg
);
956 void populateCommandTable(void);
957 void resetCommandTableStats(void);
960 robj
*setTypeCreate(robj
*value
);
961 int setTypeAdd(robj
*subject
, robj
*value
);
962 int setTypeRemove(robj
*subject
, robj
*value
);
963 int setTypeIsMember(robj
*subject
, robj
*value
);
964 setTypeIterator
*setTypeInitIterator(robj
*subject
);
965 void setTypeReleaseIterator(setTypeIterator
*si
);
966 int setTypeNext(setTypeIterator
*si
, robj
**objele
, int64_t *llele
);
967 robj
*setTypeNextObject(setTypeIterator
*si
);
968 int setTypeRandomElement(robj
*setobj
, robj
**objele
, int64_t *llele
);
969 unsigned long setTypeSize(robj
*subject
);
970 void setTypeConvert(robj
*subject
, int enc
);
973 void hashTypeConvert(robj
*o
, int enc
);
974 void hashTypeTryConversion(robj
*subject
, robj
**argv
, int start
, int end
);
975 void hashTypeTryObjectEncoding(robj
*subject
, robj
**o1
, robj
**o2
);
976 robj
*hashTypeGetObject(robj
*o
, robj
*key
);
977 int hashTypeExists(robj
*o
, robj
*key
);
978 int hashTypeSet(robj
*o
, robj
*key
, robj
*value
);
979 int hashTypeDelete(robj
*o
, robj
*key
);
980 unsigned long hashTypeLength(robj
*o
);
981 hashTypeIterator
*hashTypeInitIterator(robj
*subject
);
982 void hashTypeReleaseIterator(hashTypeIterator
*hi
);
983 int hashTypeNext(hashTypeIterator
*hi
);
984 void hashTypeCurrentFromZiplist(hashTypeIterator
*hi
, int what
,
985 unsigned char **vstr
,
988 void hashTypeCurrentFromHashTable(hashTypeIterator
*hi
, int what
, robj
**dst
);
989 robj
*hashTypeCurrentObject(hashTypeIterator
*hi
, int what
);
990 robj
*hashTypeLookupWriteOrCreate(redisClient
*c
, robj
*key
);
993 int pubsubUnsubscribeAllChannels(redisClient
*c
, int notify
);
994 int pubsubUnsubscribeAllPatterns(redisClient
*c
, int notify
);
995 void freePubsubPattern(void *p
);
996 int listMatchPubsubPattern(void *a
, void *b
);
997 int pubsubPublishMessage(robj
*channel
, robj
*message
);
1000 void loadServerConfig(char *filename
, char *options
);
1001 void appendServerSaveParams(time_t seconds
, int changes
);
1002 void resetServerSaveParams();
1004 /* db.c -- Keyspace access API */
1005 int removeExpire(redisDb
*db
, robj
*key
);
1006 void propagateExpire(redisDb
*db
, robj
*key
);
1007 int expireIfNeeded(redisDb
*db
, robj
*key
);
1008 long long getExpire(redisDb
*db
, robj
*key
);
1009 void setExpire(redisDb
*db
, robj
*key
, long long when
);
1010 robj
*lookupKey(redisDb
*db
, robj
*key
);
1011 robj
*lookupKeyRead(redisDb
*db
, robj
*key
);
1012 robj
*lookupKeyWrite(redisDb
*db
, robj
*key
);
1013 robj
*lookupKeyReadOrReply(redisClient
*c
, robj
*key
, robj
*reply
);
1014 robj
*lookupKeyWriteOrReply(redisClient
*c
, robj
*key
, robj
*reply
);
1015 void dbAdd(redisDb
*db
, robj
*key
, robj
*val
);
1016 void dbOverwrite(redisDb
*db
, robj
*key
, robj
*val
);
1017 void setKey(redisDb
*db
, robj
*key
, robj
*val
);
1018 int dbExists(redisDb
*db
, robj
*key
);
1019 robj
*dbRandomKey(redisDb
*db
);
1020 int dbDelete(redisDb
*db
, robj
*key
);
1021 long long emptyDb();
1022 int selectDb(redisClient
*c
, int id
);
1023 void signalModifiedKey(redisDb
*db
, robj
*key
);
1024 void signalFlushedDb(int dbid
);
1025 unsigned int GetKeysInSlot(unsigned int hashslot
, robj
**keys
, unsigned int count
);
1027 /* API to get key arguments from commands */
1028 #define REDIS_GETKEYS_ALL 0
1029 #define REDIS_GETKEYS_PRELOAD 1
1030 int *getKeysFromCommand(struct redisCommand
*cmd
, robj
**argv
, int argc
, int *numkeys
, int flags
);
1031 void getKeysFreeResult(int *result
);
1032 int *noPreloadGetKeys(struct redisCommand
*cmd
,robj
**argv
, int argc
, int *numkeys
, int flags
);
1033 int *renameGetKeys(struct redisCommand
*cmd
,robj
**argv
, int argc
, int *numkeys
, int flags
);
1034 int *zunionInterGetKeys(struct redisCommand
*cmd
,robj
**argv
, int argc
, int *numkeys
, int flags
);
1037 void initSentinelConfig(void);
1038 void initSentinel(void);
1039 void sentinelTimer(void);
1040 char *sentinelHandleConfiguration(char **argv
, int argc
);
1043 void scriptingInit(void);
1046 char *redisGitSHA1(void);
1047 char *redisGitDirty(void);
1049 /* Commands prototypes */
1050 void authCommand(redisClient
*c
);
1051 void pingCommand(redisClient
*c
);
1052 void echoCommand(redisClient
*c
);
1053 void setCommand(redisClient
*c
);
1054 void setnxCommand(redisClient
*c
);
1055 void setexCommand(redisClient
*c
);
1056 void psetexCommand(redisClient
*c
);
1057 void getCommand(redisClient
*c
);
1058 void delCommand(redisClient
*c
);
1059 void existsCommand(redisClient
*c
);
1060 void setbitCommand(redisClient
*c
);
1061 void getbitCommand(redisClient
*c
);
1062 void setrangeCommand(redisClient
*c
);
1063 void getrangeCommand(redisClient
*c
);
1064 void incrCommand(redisClient
*c
);
1065 void decrCommand(redisClient
*c
);
1066 void incrbyCommand(redisClient
*c
);
1067 void decrbyCommand(redisClient
*c
);
1068 void incrbyfloatCommand(redisClient
*c
);
1069 void selectCommand(redisClient
*c
);
1070 void randomkeyCommand(redisClient
*c
);
1071 void keysCommand(redisClient
*c
);
1072 void dbsizeCommand(redisClient
*c
);
1073 void lastsaveCommand(redisClient
*c
);
1074 void saveCommand(redisClient
*c
);
1075 void bgsaveCommand(redisClient
*c
);
1076 void bgrewriteaofCommand(redisClient
*c
);
1077 void shutdownCommand(redisClient
*c
);
1078 void moveCommand(redisClient
*c
);
1079 void renameCommand(redisClient
*c
);
1080 void renamenxCommand(redisClient
*c
);
1081 void lpushCommand(redisClient
*c
);
1082 void rpushCommand(redisClient
*c
);
1083 void lpushxCommand(redisClient
*c
);
1084 void rpushxCommand(redisClient
*c
);
1085 void linsertCommand(redisClient
*c
);
1086 void lpopCommand(redisClient
*c
);
1087 void rpopCommand(redisClient
*c
);
1088 void llenCommand(redisClient
*c
);
1089 void lindexCommand(redisClient
*c
);
1090 void lrangeCommand(redisClient
*c
);
1091 void ltrimCommand(redisClient
*c
);
1092 void typeCommand(redisClient
*c
);
1093 void lsetCommand(redisClient
*c
);
1094 void saddCommand(redisClient
*c
);
1095 void sremCommand(redisClient
*c
);
1096 void smoveCommand(redisClient
*c
);
1097 void sismemberCommand(redisClient
*c
);
1098 void scardCommand(redisClient
*c
);
1099 void spopCommand(redisClient
*c
);
1100 void srandmemberCommand(redisClient
*c
);
1101 void sinterCommand(redisClient
*c
);
1102 void sinterstoreCommand(redisClient
*c
);
1103 void sunionCommand(redisClient
*c
);
1104 void sunionstoreCommand(redisClient
*c
);
1105 void sdiffCommand(redisClient
*c
);
1106 void sdiffstoreCommand(redisClient
*c
);
1107 void syncCommand(redisClient
*c
);
1108 void flushdbCommand(redisClient
*c
);
1109 void flushallCommand(redisClient
*c
);
1110 void sortCommand(redisClient
*c
);
1111 void lremCommand(redisClient
*c
);
1112 void rpoplpushCommand(redisClient
*c
);
1113 void infoCommand(redisClient
*c
);
1114 void mgetCommand(redisClient
*c
);
1115 void monitorCommand(redisClient
*c
);
1116 void expireCommand(redisClient
*c
);
1117 void expireatCommand(redisClient
*c
);
1118 void pexpireCommand(redisClient
*c
);
1119 void pexpireatCommand(redisClient
*c
);
1120 void getsetCommand(redisClient
*c
);
1121 void ttlCommand(redisClient
*c
);
1122 void pttlCommand(redisClient
*c
);
1123 void persistCommand(redisClient
*c
);
1124 void slaveofCommand(redisClient
*c
);
1125 void debugCommand(redisClient
*c
);
1126 void msetCommand(redisClient
*c
);
1127 void msetnxCommand(redisClient
*c
);
1128 void zaddCommand(redisClient
*c
);
1129 void zincrbyCommand(redisClient
*c
);
1130 void zrangeCommand(redisClient
*c
);
1131 void zrangebyscoreCommand(redisClient
*c
);
1132 void zrevrangebyscoreCommand(redisClient
*c
);
1133 void zcountCommand(redisClient
*c
);
1134 void zrevrangeCommand(redisClient
*c
);
1135 void zcardCommand(redisClient
*c
);
1136 void zremCommand(redisClient
*c
);
1137 void zscoreCommand(redisClient
*c
);
1138 void zremrangebyscoreCommand(redisClient
*c
);
1139 void multiCommand(redisClient
*c
);
1140 void execCommand(redisClient
*c
);
1141 void discardCommand(redisClient
*c
);
1142 void blpopCommand(redisClient
*c
);
1143 void brpopCommand(redisClient
*c
);
1144 void brpoplpushCommand(redisClient
*c
);
1145 void appendCommand(redisClient
*c
);
1146 void strlenCommand(redisClient
*c
);
1147 void zrankCommand(redisClient
*c
);
1148 void zrevrankCommand(redisClient
*c
);
1149 void hsetCommand(redisClient
*c
);
1150 void hsetnxCommand(redisClient
*c
);
1151 void hgetCommand(redisClient
*c
);
1152 void hmsetCommand(redisClient
*c
);
1153 void hmgetCommand(redisClient
*c
);
1154 void hdelCommand(redisClient
*c
);
1155 void hlenCommand(redisClient
*c
);
1156 void zremrangebyrankCommand(redisClient
*c
);
1157 void zunionstoreCommand(redisClient
*c
);
1158 void zinterstoreCommand(redisClient
*c
);
1159 void hkeysCommand(redisClient
*c
);
1160 void hvalsCommand(redisClient
*c
);
1161 void hgetallCommand(redisClient
*c
);
1162 void hexistsCommand(redisClient
*c
);
1163 void configCommand(redisClient
*c
);
1164 void hincrbyCommand(redisClient
*c
);
1165 void hincrbyfloatCommand(redisClient
*c
);
1166 void subscribeCommand(redisClient
*c
);
1167 void unsubscribeCommand(redisClient
*c
);
1168 void psubscribeCommand(redisClient
*c
);
1169 void punsubscribeCommand(redisClient
*c
);
1170 void publishCommand(redisClient
*c
);
1171 void watchCommand(redisClient
*c
);
1172 void unwatchCommand(redisClient
*c
);
1173 void restoreCommand(redisClient
*c
);
1174 void migrateCommand(redisClient
*c
);
1175 void dumpCommand(redisClient
*c
);
1176 void objectCommand(redisClient
*c
);
1177 void clientCommand(redisClient
*c
);
1178 void evalCommand(redisClient
*c
);
1179 void evalShaCommand(redisClient
*c
);
1180 void scriptCommand(redisClient
*c
);
1181 void timeCommand(redisClient
*c
);
1182 void bitopCommand(redisClient
*c
);
1183 void bitcountCommand(redisClient
*c
);
1184 void replconfCommand(redisClient
*c
);
1186 #if defined(__GNUC__)
1187 void *calloc(size_t count
, size_t size
) __attribute__ ((deprecated
));
1188 void free(void *ptr
) __attribute__ ((deprecated
));
1189 void *malloc(size_t size
) __attribute__ ((deprecated
));
1190 void *realloc(void *ptr
, size_t size
) __attribute__ ((deprecated
));
1193 /* Debugging stuff */
1194 void _redisAssertWithInfo(redisClient
*c
, robj
*o
, char *estr
, char *file
, int line
);
1195 void _redisAssert(char *estr
, char *file
, int line
);
1196 void _redisPanic(char *msg
, char *file
, int line
);
1197 void bugReportStart(void);
1198 void redisLogObjectDebugInfo(robj
*o
);
1199 void sigsegvHandler(int sig
, siginfo_t
*info
, void *secret
);
1200 sds
genRedisInfoString(char *section
);
1201 void enableWatchdog(int period
);
1202 void disableWatchdog(void);
1203 void watchdogScheduleSignal(int period
);
1204 void redisLogHexDump(int level
, char *descr
, void *value
, size_t len
);
1206 #define redisDebug(fmt, ...) \
1207 printf("DEBUG %s:%d > " fmt "\n", __FILE__, __LINE__, __VA_ARGS__)
1208 #define redisDebugMark() \
1209 printf("-- MARK %s:%d --\n", __FILE__, __LINE__)