Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cacheops/lua/cache_thing.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
--!df flags=allow-undeclared-keys
local prefix = KEYS[1]
local key = KEYS[2]
local precall_key = KEYS[3]
Expand Down
1 change: 1 addition & 0 deletions cacheops/lua/cache_thing_insideout.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
--!df flags=allow-undeclared-keys
local prefix = KEYS[1]
local key = KEYS[2]
local data = ARGV[1]
Expand Down
1 change: 1 addition & 0 deletions cacheops/lua/invalidate.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
--!df flags=allow-undeclared-keys
local prefix = KEYS[1]
local db_table = ARGV[1]
local obj = cjson.decode(ARGV[2])
Expand Down
1 change: 1 addition & 0 deletions cacheops/lua/invalidate_insideout.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
--!df flags=allow-undeclared-keys
local prefix = KEYS[1]
local db_table = ARGV[1]
local obj = cjson.decode(ARGV[2])
Expand Down
Loading