0

我目前正在开发一个使用 NodeJs 中的 Redis 的项目,并且许多数据作为 JSON 字符串存储在 Redis 中。我有很多键,即

 urn:comment:1, urn:comment:2 etc and the values contained are:

"{Id:1, CommentText:"some text here that could be quite large..." ...} etc

我需要的是一种在“CommentText”中搜索字符串的方法。

我是 Redis 新手,我有哪些选择?

4

1 回答 1

1

Redis is not well suited for what you want. Since you want full text search functionality i strongly recommend using Elastic Search elasticsearch.org

于 2014-04-13T07:58:30.130 回答