mirror of
https://github.com/fluencelabs/redis
synced 2025-06-21 04:51:32 +00:00
Return errors if a write command is called inside a Lua script after a random command was called. See https://github.com/antirez/redis/issues/95 for more information.
This commit is contained in:
@ -623,6 +623,8 @@ struct redisServer {
|
||||
dict *lua_scripts; /* A dictionary of SHA1 -> Lua scripts */
|
||||
long long lua_time_limit;
|
||||
long long lua_time_start;
|
||||
int lua_random_dirty; /* True if a random command was called during the
|
||||
exection of the current script. */
|
||||
};
|
||||
|
||||
typedef struct pubsubPattern {
|
||||
|
Reference in New Issue
Block a user