Home
last modified time | relevance | path

Searched refs:lua_caller (Results 1 – 4 of 4) sorted by relevance

/redis-3.2.3/src/
H A Dscripting.c484 !(server.lua_caller->flags & CLIENT_MASTER)) in luaRedisGenericCommand()
517 !(server.lua_caller->flags & CLIENT_MASTER)) in luaRedisGenericCommand()
521 c->flags |= server.lua_caller->flags & (CLIENT_READONLY|CLIENT_ASKING); in luaRedisGenericCommand()
540 execCommandPropagateMulti(server.lua_caller); in luaRedisGenericCommand()
900 server.lua_caller = NULL; in scriptingInit()
1196 aeDeleteFileEvent(server.el, server.lua_caller->fd, AE_READABLE); in luaMaskCountHook()
1303 server.lua_caller = c; in evalGenericCommand()
1330 server.lua_caller = NULL; in evalGenericCommand()
1459 if (server.lua_caller == NULL) { in scriptCommand()
H A Dserver.c2254 if (c->flags & CLIENT_LUA && server.lua_caller) { in call()
2256 server.lua_caller->flags |= CLIENT_FORCE_REPL; in call()
2258 server.lua_caller->flags |= CLIENT_FORCE_AOF; in call()
2384 server.lua_caller->flags & CLIENT_MASTER) && in processCommand()
H A Ddb.c910 now = server.lua_caller ? server.lua_time_start : mstime(); in expireIfNeeded()
H A Dserver.h954 client *lua_caller; /* The client running EVAL right now, or NULL */ member