比如说我在redis中有一篇新闻文章:
SET article:id '{ "title": "this is the title", "content": "this is the content" }'
现在说我想将一些元数据与标签联系起来,说“政治”。惯用的方法是什么?
是否按照article:<id>:tags
这样的惯例为具有设置ID的标记添加集合?
SADD article:id:tags 'politics'
答案 0 :(得分:1)
您可能需要考虑将redis hash用于
HMSET article:id "title" "this is the title" "content" "this is the content" "tag" "politics"
如果你想按标签获取文章,反向集合可能会更好
SADD tags:politics article_id