標籤:
https://cnodejs.org/topic/53ad78f2c3ee0b5820f74298
follow,tag,和feed系統都非常適合用redis來實現,以tag系統為例: 使用者ltebean要給nodejs加一個標籤amazing就是:
sadd user:ltebean:tag:amazing nodejssadd user:ltebean:item:nodejs amazing
存一個反向關係是為了即能根據tag查也能根據item查,下面是redis的command:
拿到nodejs所有的標籤:
smembers user:ltebean:item:nodejs
拿到tag amazing下所有的item:
smembers user:ltebean:tag:amazing
拿到既打了amazing標籤,又打了web標籤的item
sunion user:ltebean:tag:amazing user:ltebean:tag:web
下面是nodejs實現的api:
taggie.user(‘ltebean‘).item(‘bootstrap‘).addTag(‘css‘, function(err, res) {});taggie.user(‘ltebean‘).item(‘bootstrap‘).addTag(‘web‘, function(err, res) {});taggie.user(‘ltebean‘).item(‘jquery‘).addTag(‘web‘, function(err, res) {});taggie.user(‘ltebean‘).item(‘jquery‘).addTag(‘js‘, function(err, res) {});taggie.user(‘ltebean‘).item(‘nodjs‘).addTag(‘js‘, function(err, res) {});taggie.user(‘ltebean‘).item(‘jquery‘).allTags(function(err, res) { console.log("jquery ‘s tag: %s", res); // jquery ‘s tag: js,web});taggie.user(‘ltebean‘).item().allItems(function(err, res) { console.log("all items: %s", res); // all items: jquery,nodjs,bootstrap});taggie.user(‘ltebean‘).tag(‘web‘).allItems(function(err,res){ console.log(‘tagged with web: %s‘,res); // tagged with web: jquery,bootstrap});taggie.user(‘ltebean‘).tag().allTags(function(err,res){ console.log(‘all tags: %s‘,res); // all tags: js,web,css});taggie.user(‘ltebean‘).tag([‘web‘,‘js‘]).itemsByInter(function(err,res){ console.log(‘tagged with web and js: %s‘,res); // tagged with web and js: jquery});taggie.user(‘ltebean‘).tag([‘web‘,‘js‘]).itemsByUnion(function(err,res){ console.log(‘tagged with web or js: %s‘,res); // tagged with web or js: jquery,nodjs,bootstrap});
使用者follow和feed系統的實現也類似, 最後附上三個項目的地址: taggie: https://github.com/ltebean/taggie user-graph: https://github.com/ltebean/user-graph feedie: https://github.com/ltebean/feedie
用node加redis實現follow,tag,feed系統