使用RediSearch请求特定字段(不是所有字段)

时间:2018-10-01 19:58:14

标签: performance search redis redisearch

Here's an official example of a RediSearch query

println("This program is using ", Threads.nthreads(), " threads")

我的问题是,我怎样才能只请求一个或两个字段,例如只是返回“ title”值(“ hello world”)或“ ID”和“ title”字段([1,“ hello world”])。主要是出于性能原因。

1 个答案:

答案 0 :(得分:3)

是的,它支持RETURN选项。

127.0.0.1:6379> FT.SEARCH myIdx "hello world" LIMIT 0 10 RETURN 2 title url

请参阅:https://oss.redislabs.com/redisearch/Commands/#ftsearch