如何使用redis将元数据与对象相关联

时间:2017-07-12 09:31:16

标签: redis

比如说我在redis中有一篇新闻文章:

SET article:id '{ "title": "this is the title", "content": "this is the content" }'

现在说我想将一些元数据与标签联系起来,说“政治”。惯用的方法是什么?

是否按照article:<id>:tags这样的惯例为具有设置ID的标记添加集合?

SADD article:id:tags 'politics'

1 个答案:

答案 0 :(得分:1)

您可能需要考虑将redis hash用于

HMSET article:id "title" "this is the title" "content" "this is the content" "tag" "politics"

如果你想按标签获取文章,反向集合可能会更好

SADD tags:politics article_id