]> git.saurik.com Git - redis.git/commit - src/scripting.c
Stop access to global vars. Not configurable.
authorantirez <antirez@gmail.com>
Fri, 13 Apr 2012 11:26:59 +0000 (13:26 +0200)
committerantirez <antirez@gmail.com>
Fri, 13 Apr 2012 11:26:59 +0000 (13:26 +0200)
commit6663653f515285aebe772663a24c381929c3e512
tree85741b55ff15db560eb33da8c2714ece14065db9
parentc9edd1b28ae429e6c34462917fcb5c9d616e0ef8
Stop access to global vars. Not configurable.

After considering the interaction between ability to delcare globals in
scripts using the 'global' function, and the complexities related to
hanlding replication and AOF in a sane way with globals AND ability to
turn protection On and Off, we reconsidered the design. The new design
makes clear that there is only one good way to write Redis scripts, that
is not using globals. In the rare cases state must be retained across
calls a Redis key can be used.
redis.conf
src/config.c
src/redis.c
src/redis.h
src/scripting.c