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
1aee086a
Unverified
Commit
1aee086a
authored
May 04, 2020
by
Salvatore Sanfilippo
Committed by
GitHub
May 04, 2020
Browse files
Merge pull request #7192 from hwware/trackingprefix
Client Side Caching: Add Number of Tracking Prefix Stats in Server Info
parents
68b5eed4
e697ef6d
Changes
3
Show whitespace changes
Inline
Side-by-side
src/server.c
View file @
1aee086a
...
...
@@ -4281,6 +4281,7 @@ sds genRedisInfoString(const char *section) {
"active_defrag_key_misses:%lld\r\n"
"tracking_total_keys:%lld\r\n"
"tracking_total_items:%lld\r\n"
"tracking_total_prefixes:%lld\r\n"
"unexpected_error_replies:%lld\r\n",
server.stat_numconnections,
server.stat_numcommands,
...
...
@@ -4311,6 +4312,7 @@ sds genRedisInfoString(const char *section) {
server.stat_active_defrag_key_misses,
(unsigned long long) trackingGetTotalKeys(),
(unsigned long long) trackingGetTotalItems(),
(unsigned long long) trackingGetTotalPrefixes(),
server.stat_unexpected_error_replies);
}
...
...
src/server.h
View file @
1aee086a
...
...
@@ -1695,6 +1695,7 @@ void trackingInvalidateKeysOnFlush(int dbid);
void
trackingLimitUsedSlots
(
void
);
uint64_t
trackingGetTotalItems
(
void
);
uint64_t
trackingGetTotalKeys
(
void
);
uint64_t
trackingGetTotalPrefixes
(
void
);
void
trackingBroadcastInvalidationMessages
(
void
);
/* List data type */
...
...
src/tracking.c
View file @
1aee086a
...
...
@@ -518,3 +518,8 @@ uint64_t trackingGetTotalKeys(void) {
if
(
TrackingTable
==
NULL
)
return
0
;
return
raxSize
(
TrackingTable
);
}
uint64_t
trackingGetTotalPrefixes
(
void
)
{
if
(
PrefixTable
==
NULL
)
return
0
;
return
raxSize
(
PrefixTable
);
}
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