Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
f42e2f1b
Commit
f42e2f1b
authored
Dec 31, 2011
by
antirez
Browse files
Protocol and I/O related defines moved into a separated section of redis.h
parent
35c6032c
Changes
1
Show whitespace changes
Inline
Side-by-side
src/redis.h
View file @
f42e2f1b
...
@@ -40,14 +40,11 @@
...
@@ -40,14 +40,11 @@
/* Static server configuration */
/* Static server configuration */
#define REDIS_SERVERPORT 6379
/* TCP port */
#define REDIS_SERVERPORT 6379
/* TCP port */
#define REDIS_MAXIDLETIME 0
/* default client timeout: infinite */
#define REDIS_MAXIDLETIME 0
/* default client timeout: infinite */
#define REDIS_MAX_QUERYBUF_LEN (1024*1024*1024)
/* 1GB max query buffer. */
#define REDIS_IOBUF_LEN (1024*16)
/* Generic I/O buffer size */
#define REDIS_DEFAULT_DBNUM 16
#define REDIS_DEFAULT_DBNUM 16
#define REDIS_CONFIGLINE_MAX 1024
#define REDIS_CONFIGLINE_MAX 1024
#define REDIS_EXPIRELOOKUPS_PER_CRON 10
/* lookup 10 expires per loop */
#define REDIS_EXPIRELOOKUPS_PER_CRON 10
/* lookup 10 expires per loop */
#define REDIS_MAX_WRITE_PER_EVENT (1024*64)
#define REDIS_MAX_WRITE_PER_EVENT (1024*64)
#define REDIS_SHARED_INTEGERS 10000
#define REDIS_SHARED_INTEGERS 10000
#define REDIS_REPLY_CHUNK_BYTES (16*1024)
/* 16k output buffer */
#define REDIS_MAX_LOGMSG_LEN 1024
/* Default maximum length of syslog messages */
#define REDIS_MAX_LOGMSG_LEN 1024
/* Default maximum length of syslog messages */
#define REDIS_AOF_REWRITE_PERC 100
#define REDIS_AOF_REWRITE_PERC 100
#define REDIS_AOF_REWRITE_MIN_SIZE (1024*1024)
#define REDIS_AOF_REWRITE_MIN_SIZE (1024*1024)
...
@@ -58,6 +55,11 @@
...
@@ -58,6 +55,11 @@
#define REDIS_REPL_TIMEOUT 60
#define REDIS_REPL_TIMEOUT 60
#define REDIS_REPL_PING_SLAVE_PERIOD 10
#define REDIS_REPL_PING_SLAVE_PERIOD 10
/* Protocol and I/O related defines */
#define REDIS_MAX_QUERYBUF_LEN (1024*1024*1024)
/* 1GB max query buffer. */
#define REDIS_IOBUF_LEN (1024*16)
/* Generic I/O buffer size */
#define REDIS_REPLY_CHUNK_BYTES (16*1024)
/* 16k output buffer */
#define REDIS_MBULK_BIG_ARG (1024*32)
#define REDIS_MBULK_BIG_ARG (1024*32)
/* Hash table parameters */
/* Hash table parameters */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment