我目前正在开发一个使用 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 新手,我有哪些选择?