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

Function evalCommand

app/redis-6.2.6/src/scripting.c:1722–1730  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1720}
1721
1722void evalCommand(client *c) {
1723 /* Explicitly feed monitor here so that lua commands appear after their
1724 * script command. */
1725 replicationFeedMonitors(c,server.monitors,c->db->id,c->argv,c->argc);
1726 if (!(c->flags & CLIENT_LUA_DEBUG))
1727 evalGenericCommand(c,0);
1728 else
1729 evalGenericCommandWithDebugging(c,0);
1730}
1731
1732void evalShaCommand(client *c) {
1733 /* Explicitly feed monitor here so that lua commands appear after their

Callers

nothing calls this directly

Calls 3

replicationFeedMonitorsFunction · 0.85
evalGenericCommandFunction · 0.85

Tested by

no test coverage detected