与openresty一起使用redisearch

gr8qqesn  于 2021-06-09  发布在  Redis
关注(0)|答案(1)|浏览(358)

我想使用openresty连接到redisearch。
没有可用于lua的特定客户机,因此我考虑使用本地lua resty redis
如何使用lua执行redis命令?

127.0.0.1:6379> FT.SEARCH myIdx "hello world" LIMIT 0 10
wwwo4jvm

wwwo4jvm1#

回复自己:
我在redis.lua中添加了这个函数

function _M.ftsearch(self, ...)
    return _do_cmd(self, "ft.search", ...)
end

相关问题