How to implement blocking and following user functionality in node.js as backend ??
Rupesh Krishna Jha

Rupesh Krishna Jha @rupeshiya

About: Aspiring Full Stack Web developer and Open Source Contributor.

Location:
Bhubaneswar,India
Joined:
Jun 23, 2018

How to implement blocking and following user functionality in node.js as backend ??

Publish Date: Mar 7 '19
5 3

Comments 3 total

  • Theofanis Despoudis
    Theofanis DespoudisMar 9, 2019

    Use a Set data structure ideally using Redis for checking membership, for example each user has a set of user ids as friends and a set of user ids as enemies. Now all the operations would involve using union find or intersection operations.

    • Rupesh Krishna Jha
      Rupesh Krishna JhaMar 9, 2019

      Great idea !! awesome , thanks a lot man ! ..
      I got it .

    • alkont
      alkontJan 27, 2021

      is there a way to do so with emails, in order to block a received mail?

Add comment