redis
现在有如下数据
tag:userid:1 js php python html
tag:userid:2 php python
tag:userid:3 html php
..
..
..
如何找出有相同兴趣的 比如 同时包含 python 的 key 如何实现?
1
c4pt0r 2015-11-26 15:14:27 +08:00 1
你这个想高效,只能反向建索引
|
2
nigelvon 2015-11-26 15:15:37 +08:00 1
这种场景用 redis 不合适。
|
3
trigged 2015-11-26 15:19:53 +08:00 1
冗余,再建一个 set <python>:[uid1,uid2]
|
4
xujif 2015-11-26 15:31:32 +08:00
反向索引+1
|
5
knightdf 2015-11-26 16:39:25 +08:00
查内容,只能反向索引
|
6
newghost 2015-11-26 17:42:28 +08:00 1
创建一个只有 python 的 set
新建一个 set 或 zset tag:python user:1 user:2 user:3 redblade 就是用来干这个的, 用 node.js 实现 https://github.com/newghost/redblade |
7
xiamingchong 2015-11-27 09:40:26 +08:00
上 es 吧
|