mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 00:28:26 -05:00
Merge pull request #4526 from itamarhaber/memory_help
Standardizes `MEMORY HELP` subcommand
This commit is contained in:
commit
249cd9381d
27
src/object.c
27
src/object.c
@ -1287,7 +1287,18 @@ NULL
|
|||||||
void memoryCommand(client *c) {
|
void memoryCommand(client *c) {
|
||||||
robj *o;
|
robj *o;
|
||||||
|
|
||||||
if (!strcasecmp(c->argv[1]->ptr,"usage") && c->argc >= 3) {
|
if (c->argc == 2 && !strcasecmp(c->argv[1]->ptr,"help")) {
|
||||||
|
|
||||||
|
const char *help[] = {
|
||||||
|
"DOCTOR - Return memory problems reports.",
|
||||||
|
"MALLOC-STATS -- Return internal statistics report from the memory allocator.",
|
||||||
|
"PURGE -- Attempt to purge dirty pages for reclamation by the allocator.",
|
||||||
|
"STATS -- Return information about the memory usage of the server.",
|
||||||
|
"USAGE <key> [SAMPLES <count>] -- Return memory in bytes used by <key> and its value. Nested values are sampled up to <count> times (default: 5).",
|
||||||
|
NULL
|
||||||
|
};
|
||||||
|
addReplyHelp(c, help);
|
||||||
|
} else if (!strcasecmp(c->argv[1]->ptr,"usage") && c->argc >= 3) {
|
||||||
long long samples = OBJ_COMPUTE_SIZE_DEF_SAMPLES;
|
long long samples = OBJ_COMPUTE_SIZE_DEF_SAMPLES;
|
||||||
for (int j = 3; j < c->argc; j++) {
|
for (int j = 3; j < c->argc; j++) {
|
||||||
if (!strcasecmp(c->argv[j]->ptr,"samples") &&
|
if (!strcasecmp(c->argv[j]->ptr,"samples") &&
|
||||||
@ -1434,19 +1445,7 @@ void memoryCommand(client *c) {
|
|||||||
addReply(c, shared.ok);
|
addReply(c, shared.ok);
|
||||||
/* Nothing to do for other allocators. */
|
/* Nothing to do for other allocators. */
|
||||||
#endif
|
#endif
|
||||||
} else if (!strcasecmp(c->argv[1]->ptr,"help") && c->argc == 2) {
|
|
||||||
addReplyMultiBulkLen(c,5);
|
|
||||||
addReplyBulkCString(c,
|
|
||||||
"MEMORY DOCTOR - Outputs memory problems report");
|
|
||||||
addReplyBulkCString(c,
|
|
||||||
"MEMORY USAGE <key> [SAMPLES <count>] - Estimate memory usage of key");
|
|
||||||
addReplyBulkCString(c,
|
|
||||||
"MEMORY STATS - Show memory usage details");
|
|
||||||
addReplyBulkCString(c,
|
|
||||||
"MEMORY PURGE - Ask the allocator to release memory");
|
|
||||||
addReplyBulkCString(c,
|
|
||||||
"MEMORY MALLOC-STATS - Show allocator internal stats");
|
|
||||||
} else {
|
} else {
|
||||||
addReplyError(c,"Syntax error. Try MEMORY HELP");
|
addReplyErrorFormat(c, "Unknown subcommand or wrong number of arguments for '%s'. Try MEMORY HELP", (char*)c->argv[1]->ptr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user