MCPcopy Create free account
hub / github.com/F-Stack/f-stack / incrbyCommand

Function incrbyCommand

app/redis-6.2.6/src/t_string.c:625–630  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

623}
624
625void incrbyCommand(client *c) {
626 long long incr;
627
628 if (getLongLongFromObjectOrReply(c, c->argv[2], &incr, NULL) != C_OK) return;
629 incrDecrCommand(c,incr);
630}
631
632void decrbyCommand(client *c) {
633 long long incr;

Callers

nothing calls this directly

Calls 2

incrDecrCommandFunction · 0.85

Tested by

no test coverage detected