I'm developing my own social network, and I haven't found on the web examples of implementation the stream of users' actions... For example, how to filter actions for each users? How to store the action events? Which data model and object model can I use for the actions stream and for the actions itselves?
|
|
|||
|
|
|
I think that an explanation on how notifications system works on large websites can be found in the stack overflow question how does social networking websites compute friends updates?, in the Jeremy Wall's answer. He suggests the use of Message Qeue and he indicates two open source softwares that implement it: See also the question What’s the best manner of implementing a social activity stream? |
|||
|
|
|
|
I use a plain old MySQL table for dealing with about 15 million activities. It looks something like this:
The I index on Pretty basic stuff, but it works, it's simple, and it is easy to work with as your needs change. Also, if you aren't using MySQL you might be able to do better index-wise. For faster access to the most recent activities, I've been experimenting with Redis. Redis stores all of its data in-memory, so you can't put all of your activities in there, but you could store enough for most of the commonly-hit screens on your site. The most recent 100 for each user or something like that. With Redis in the mix, it might work like this:
Redis is fast and offers a way to pipeline commands across one connection - so pushing an activity out to 1000 friends takes milliseconds. For a more detailed explanation of what I am talking about, see Redis' Twitter example: http://code.google.com/p/redis/wiki/TwitterAlikeExample |
|||
|
|
|
|
This is my implementation of an activity stream, using mysql. There are three classes: Activity, ActivityFeed, Subscriber. Activity represents an activity entry, and its table looks like this:
Each Activity belongs to one or more ActivityFeeds, and they are related by a table that looks like this:
In my application I have one feed for each User and one feed for each Item (usually blog articles), but they can be whatever you want. A Subscriber is usually an user of your site, but it can also be any object in your object model (for example an article could be subscribed to the feed_action of his creator). Every Subscriber belongs to one or more ActivityFeeds, and, like above, they are related by a link table of this kind:
The To retrieve the activity for a subscriber, I do a simple join of the three tables. The join is fast because I select few activities thanks to a Further explanation on |
||
|
|
