Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
70ecddc9
Commit
70ecddc9
authored
Jul 13, 2011
by
antirez
Browse files
scripting.txt file removed, content merged into the TODO file
parent
331bf329
Changes
2
Hide whitespace changes
Inline
Side-by-side
TODO
View file @
70ecddc9
...
@@ -28,6 +28,14 @@ CLUSTER
...
@@ -28,6 +28,14 @@ CLUSTER
* Allow redis-trib to create a cluster-wide snapshot (using SYNC).
* Allow redis-trib to create a cluster-wide snapshot (using SYNC).
* Allow redis-trib to restore a cluster-wide snapshot (implement UPLOAD?).
* Allow redis-trib to restore a cluster-wide snapshot (implement UPLOAD?).
SCRIPTING
=========
* MULTI/EXEC/...: should we do more than simply ignoring it?
* Prevent Lua from calling itself with redis("eval",...)
* SCRIPT FLUSH or alike to start a fresh interpreter?
* http://redis.io/topics/sponsors
APPEND ONLY FILE
APPEND ONLY FILE
================
================
...
...
src/SCRIPTING.txt
deleted
100644 → 0
View file @
331bf329
Documentation:
http://antirez.com/post/scripting-branch-released.html
TODO:
MULTI/EXEC/...: should we do more than simply ignoring it?
Prevent Lua from calling itself with redis("eval",...)
Implement log() function, and define REDIS_WARNING, REDIS_NOTICE, ...
SCRIPT FLUSH or alike to start a fresh interpreter.
Max exection time for scripts, even pretty high, but in order to
prevent that an instance gets completely freezed by error.
Hint: Use a debug hook for this (lua_sethook() with LUA_MASKCOUNT).
Blog post TODO:
Explain that for now this is just an experiemnt and there is no way to
tell if this will ever enter Redis stable, but that since it is pretty
self contained it is trivial to rebase with the unstable branch.
Explain how replication / AOF mix with scripting and why it is this way,
and that scripts should be written to don't depend from timing or other
external events if you want to use AOF / replication.
Show how fast it is!
Mention that dynamically generated scripts are not a good idea.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment