gpt4 book ai didi

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

转载 作者:IT王子 更新时间:2023-10-29 06:04:16 25 4
gpt4 key购买 nike

Here's an official example of a RediSearch query :

127.0.0.1:6379> FT.SEARCH myIdx "hello world" LIMIT 0 10
1) (integer) 1
2) "doc1"
3) 1) "title"
2) "hello world"
3) "body"
4) "lorem ipsum"
5) "url"
6) "http://redis.io"

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

最佳答案

是的,它通过 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

关于performance - 使用 RediSearch 请求特定字段(不是所有字段),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52598047/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com