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
a0f643ea
Commit
a0f643ea
authored
May 25, 2009
by
antirez
Browse files
INFO command now reports replication info
parent
0b420168
Changes
2
Show whitespace changes
Inline
Side-by-side
TODO
View file @
a0f643ea
BEFORE REDIS 1.0.0-rc1
BEFORE REDIS 1.0.0-rc1
* Replication status in INFO command. role: (master|slave) slaveof: <host:port>, slavestatus: (disconnected|ok)
* Add number of keys for every DB in INFO
* Add number of keys for every DB in INFO
* maxmemory support
* maxmemory support
* maxclients support
* maxclients support
...
...
redis.c
View file @
a0f643ea
...
@@ -3489,6 +3489,8 @@ static void infoCommand(redisClient *c) {
...
@@ -3489,6 +3489,8 @@ static void infoCommand(redisClient *c) {
info
=
sdscatprintf
(
sdsempty
(),
info
=
sdscatprintf
(
sdsempty
(),
"redis_version:%s
\r\n
"
"redis_version:%s
\r\n
"
"uptime_in_seconds:%d
\r\n
"
"uptime_in_days:%d
\r\n
"
"connected_clients:%d
\r\n
"
"connected_clients:%d
\r\n
"
"connected_slaves:%d
\r\n
"
"connected_slaves:%d
\r\n
"
"used_memory:%zu
\r\n
"
"used_memory:%zu
\r\n
"
...
@@ -3497,9 +3499,10 @@ static void infoCommand(redisClient *c) {
...
@@ -3497,9 +3499,10 @@ static void infoCommand(redisClient *c) {
"last_save_time:%d
\r\n
"
"last_save_time:%d
\r\n
"
"total_connections_received:%lld
\r\n
"
"total_connections_received:%lld
\r\n
"
"total_commands_processed:%lld
\r\n
"
"total_commands_processed:%lld
\r\n
"
"uptime_in_seconds:%d
\r\n
"
"role:%s
\r\n
"
"uptime_in_days:%d
\r\n
"
,
REDIS_VERSION
,
,
REDIS_VERSION
,
uptime
,
uptime
/
(
3600
*
24
),
listLength
(
server
.
clients
)
-
listLength
(
server
.
slaves
),
listLength
(
server
.
clients
)
-
listLength
(
server
.
slaves
),
listLength
(
server
.
slaves
),
listLength
(
server
.
slaves
),
server
.
usedmemory
,
server
.
usedmemory
,
...
@@ -3508,9 +3511,21 @@ static void infoCommand(redisClient *c) {
...
@@ -3508,9 +3511,21 @@ static void infoCommand(redisClient *c) {
server
.
lastsave
,
server
.
lastsave
,
server
.
stat_numconnections
,
server
.
stat_numconnections
,
server
.
stat_numcommands
,
server
.
stat_numcommands
,
uptime
,
server
.
masterhost
==
NULL
?
"master"
:
"slave"
uptime
/
(
3600
*
24
)
);
if
(
server
.
masterhost
)
{
info
=
sdscatprintf
(
info
,
"master_host:%s
\r\n
"
"master_port:%d
\r\n
"
"master_link_status:%s
\r\n
"
"master_last_io_seconds_ago:%d
\r\n
"
,
server
.
masterhost
,
server
.
masterport
,
(
server
.
replstate
==
REDIS_REPL_CONNECTED
)
?
"up"
:
"down"
,
(
int
)(
time
(
NULL
)
-
server
.
master
->
lastinteraction
)
);
);
}
addReplySds
(
c
,
sdscatprintf
(
sdsempty
(),
"$%d
\r\n
"
,
sdslen
(
info
)));
addReplySds
(
c
,
sdscatprintf
(
sdsempty
(),
"$%d
\r\n
"
,
sdslen
(
info
)));
addReplySds
(
c
,
info
);
addReplySds
(
c
,
info
);
addReply
(
c
,
shared
.
crlf
);
addReply
(
c
,
shared
.
crlf
);
...
...
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