]> git.saurik.com Git - redis.git/commit
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 14:23:21 +0000 (16:23 +0200)
commit97cab30993d71633d6d9947bf0405d278b239651
tree294ecbb7bb4a63bd7a68dd889693687b6bd24a9a
parent6255a5ae668a0aaf13d73f051face138cfbd78a4
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