1
ijse 2014-08-06 15:10:10 +08:00
用MongoDB, 我是这样查的:
``` find({ 'tags': { '$elemMatch': { $in [q_reg] } } }) ``` |
2
ChiChou 2014-08-06 15:14:47 +08:00
标签用 array 存储,如
{ _id: 123, title: "Advanced jQuery tricks", tag: ["frontend", "javascript", "jquery"], ... } 查询的时候用 db.colleciton.find({ "title": { '$elemMatch': { 'tag': { '$in': ['jquery', 'javascript'] } } } }) 第二个问题参考《Redis 入门指南》 http://book.douban.com/subject/24522045/ |
3
ChiChou 2014-08-06 15:16:37 +08:00 1
靠,亏我辛辛苦苦手打了这么多缩进,全吃了
|
5
gihnius 2014-08-06 15:59:03 +08:00
|