-
Notifications
You must be signed in to change notification settings - Fork 448
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hmget能否增加一个传入fied数组的方法? #29
Comments
@andex1988 This place is supposed to be English only. If you want to post in Chinese, please join the openresty (Chinese) mailing list and post there instead: https://groups.google.com/group/openresty Below are some working examples using the -- HMGET myhash field1 field2 nofield
local res, err = red:hmget("myhash", "field1", "field2", "nofield")
-- HMGET myhash field1 field2 nofield
local fields = {"field1", "field2", "nofield"}
local res, err = red:hmget("myhash", unpack(fields)) |
ok,thanks |
问个问题,lua中的table数据集合太大了没办法返回数据是什么原因? |
@88069684 Please, do not use Chinese here because this place is considered English only (as mentioned above). You're recommended to post your Chinese questions to the openresty Chinese mailing list instead. See http://openresty.org/#Community Thank you for your cooperation. |
现在 red:hmget 传入的是可变参数,能否想hmset一样传入数组啊,或者安装redis
原生的命令 hmget hashname field1 field2?
The text was updated successfully, but these errors were encountered: