What is the best way to store user relationships, e.g. friendships, that must be bidirectional (you're my friend, thus I'm your friend) in a rel. database, e.g. MYSql?

I can think of two ways:

  1. Everytime a user friends another user, I'd add two rows to a database, row A consisting of the user id of the innitiating user followed by the UID of the accepting user in the next column. Row B would be the reverse.
  2. You'd only add one row, UID(initiating user) followed by UID(accepting user); and then just search through both columns when trying to figure out whether user 1 is a friend of user 2.

Surely there is something better?

link|improve this question

sounds like you have the design right on. What your refering to is an association between two tables to create a 0..1 or many between each table and the association table. In the end what it nets is a many to many. But I must say your right on with handling it this way. – John Hartsock May 26 '10 at 1:07
feedback

3 Answers

up vote 3 down vote accepted

I would have a link table for friends, or whatever, with 2 columns both being PK's, and both being FK's to the User table.

Both columns would be the UID, and you would have two rows per friend relationship (A,B and B,A). As long as both columns are PK's, it should still be in normal format (although others are free to correct me on this)

Its a little more complex of a query, but nothing that can't be abstracted away by a stored procedure or some business logic, and its in Normal Format, which is usually nice to have.

link|improve this answer
3  
Just remember that in MySQL the default engine MyISAM does not support foreign keys, switch to InnoDB. – Geek Num 88 May 26 '10 at 1:15
True enough, but if you absolutely had to use MyISAM, you could get away with these not being actual FK's, but it could affect your data integrity and normalization, stick with InnoDB – Lerxst May 26 '10 at 1:27
1  
I would go with this system as well as it greatly simplifies the select queries for looking up friends, especially when you need to join against this table. However you should use transactions and stored procedures to make sure both rows are always inserted and deleted together (you do not want to accidentally delete one of the two rows). – too much php May 26 '10 at 1:34
feedback

Using double rows, while it creates extra data, will greatly simplify your queries and allow you to index smartly. I also remember seeing info on Twitter's custom MySQL solution wherein they used an additional field (friend #, basically) to do automatic limiting and paging. It seems pretty smooth: http://engineering.twitter.com/2010/05/introducing-flockdb.html

link|improve this answer
feedback

Use a key value store, such as Cassandra for example.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.