我想使用openresty连接到redisearch。没有可用于lua的特定客户机,因此我考虑使用本地lua resty redis如何使用lua执行redis命令?
127.0.0.1:6379> FT.SEARCH myIdx "hello world" LIMIT 0 10
wwwo4jvm1#
回复自己:我在redis.lua中添加了这个函数
function _M.ftsearch(self, ...) return _do_cmd(self, "ft.search", ...) end
1条答案
按热度按时间wwwo4jvm1#
回复自己:
我在redis.lua中添加了这个函数