]> git.saurik.com Git - redis.git/blame - src/SCRIPTING.txt
TODO updated
[redis.git] / src / SCRIPTING.txt
CommitLineData
3791000f 1TODO:
2
171ef681 3 MULTI/EXEC/...: should we do more than simply ignoring it?
4
67e829dc 5 Prevent Lua from calling itself with redis("eval",...)
171ef681 6
379789cc 7 Implement log() function, and define REDIS_WARNING, REDIS_NOTICE, ...
171ef681 8
9 SCRIPT FLUSH or alike to start a fresh interpreter.
10
11 Max exection time for scripts, even pretty high, but in order to
12 prevent that an instance gets completely freezed by error.
13 Hint: Use a debug hook for this (lua_sethook() with LUA_MASKCOUNT).
14
15Blog post TODO:
16
17 Explain that for now this is just an experiemnt and there is no way to
18 tell if this will ever enter Redis stable, but that since it is pretty
19 self contained it is trivial to rebase with the unstable branch.
20
21 Explain how replication / AOF mix with scripting and why it is this way,
22 and that scripts should be written to don't depend from timing or other
23 external events if you want to use AOF / replication.
24
25 Show how fast it is!
26
27 Mention that dynamically generated scripts are not a good idea.