Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/variables/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Variables 脚本试图创建全局变量_Variables_Lua_Redis_Global Variables - Fatal编程技术网

Variables 脚本试图创建全局变量

Variables 脚本试图创建全局变量,variables,lua,redis,global-variables,Variables,Lua,Redis,Global Variables,我想将一个脚本加载到redis中,该脚本将导出将来执行的脚本将依赖的函数,但尝试定义全局函数失败,全局变量也是如此: redis 127.0.0.1:6379> EVAL "function alex() return 3.1415 end" 0 (error) ERR Error running script (call to f_f24a5a054d91ccc74c2629e113f8f639bbedbfa2): user_script:1: Script attempted to c

我想将一个脚本加载到redis中,该脚本将导出将来执行的脚本将依赖的函数,但尝试定义全局函数失败,全局变量也是如此:

redis 127.0.0.1:6379> EVAL "function alex() return 3.1415 end" 0
(error) ERR Error running script (call to f_f24a5a054d91ccc74c2629e113f8f639bbedbfa2): user_script:1: Script attempted to create global variable 'alex'

如何定义全局函数和变量?

查看scripting.c文件中的源代码

/* This function installs metamethods in the global table _G that prevent
 * the creation of globals accidentally.
 *
 * It should be the last to be called in the scripting engine initialization
 * sequence, because it may interact with creation of globals. */
void scriptingEnableGlobalsProtection(lua_State *lua) {
    char *s[32];
    sds code = sdsempty();
    int j = 0;

    /* strict.lua from: http://metalua.luaforge.net/src/lib/strict.lua.html.
     * Modified to be adapted to Redis. */
    s[j++]="local mt = {}\n";
    s[j++]="setmetatable(_G, mt)\n";
    s[j++]="mt.__newindex = function (t, n, v)\n";
    s[j++]="  if debug.getinfo(2) then\n";
    s[j++]="    local w = debug.getinfo(2, \"S\").what\n";
    s[j++]="    if w ~= \"main\" and w ~= \"C\" then\n";
    s[j++]="      error(\"Script attempted to create global variable '\"..tostring(n)..\"'\", 2)\n";
    s[j++]="    end\n";
    s[j++]="  end\n";
    s[j++]="  rawset(t, n, v)\n";
    s[j++]="end\n";
    s[j++]="mt.__index = function (t, n)\n";
    s[j++]="  if debug.getinfo(2) and debug.getinfo(2, \"S\").what ~= \"C\" then\n";
    s[j++]="    error(\"Script attempted to access unexisting global variable '\"..tostring(n)..\"'\", 2)\n";
    s[j++]="  end\n";
    s[j++]="  return rawget(t, n)\n";
    s[j++]="end\n";
    s[j++]=NULL;

    for (j = 0; s[j] != NULL; j++) code = sdscatlen(code,s[j],strlen(s[j]));
    luaL_loadbuffer(lua,code,sdslen(code),"@enable_strict_lua");
    lua_pcall(lua,0,0,0);
    sdsfree(code);
}
scriptingEnableGlobalProtection
的文档字符串表示其目的是通知脚本作者常见错误(不使用
local

看起来这不是安全功能,所以我们有两种解决方案:

可以删除此保护:

local mt = setmetatable(_G, nil)
-- define global functions / variables
function alex() return 3.1415 end
-- return globals protection mechanizm
setmetatable(_G, mt)
或者使用
rawset

local function alex() return 3.1415 end
rawset(_G, "alex", alex)

添加lua脚本,除非您希望得到如下答案:不要定义全局变量:P@Tommaso很抱歉搞混了,但问题是关于全局变量的。我很高兴你们找到了这样做的方法。黑客精神的胜利!不过,我建议人们不要使用这种方法。从Redis文档中可以清楚地看出,其目的是通过强制脚本不驻留在服务器上来简化服务器管理(通过基于SHA的缓存可以有效地做到这一点)。将函数注入全局作用域会破坏这一意图。不过黑客技术很棒,Alex。可以使用全局范围来存储公共代码。另一种方法是使用模板引擎将所有脚本编译成一个脚本,然后发送到Redis。我更喜欢前者-它更容易连接到redis客户端并使用您的所有实用程序。请注意,实际上,Redis的操作从来都不是简单或清晰的。从
EVAL
上的Redis文档中可以看出:“如果用户弄乱了Lua全局状态,则无法保证AOF和复制的一致性:不要这样做。”