用node加redis實現follow,tag,feed系統

來源:互聯網
上載者:User

標籤:

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系統

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.