((错误)ERR错误编译脚本(新功能):user_script:2:'='预期在'local'附近]]

问题描述 投票:2回答:1

在我运行的Redis缓存中

SET 12345 JoeDude
SET JoeDude "It works!!"

我有一个打算从终端运行的Lua脚本:

lua
local user=redis.call('GET', KEYS[1])
local output=redis.call('GET', user)
return output

在终端上,我运行redis-cli --eval lua_R_and_D.lua 12345

然后我收到以下错误:(error) ERR Error compiling script (new function): user_script:2: '=' expected near 'local'

祈祷,告诉我,我做错了吗?

在我的Redis缓存中,我已经运行SET 12345 JoeDude SET JoeDude“它有效!!”我有一个打算从终端运行的Lua脚本:lua local user = redis.call('GET',KEYS [1])local output = ...

lua redis
1个回答
0
投票

lua注释为:--lua不太熟悉lua语言,但显然对服务器端脚本很有用,并且是lua语言的注释。

© www.soinside.com 2019 - 2024. All rights reserved.