vote up 4 vote down star
1

Where can i find resources that describes the strategies and patterns of design of social networks object models? For examples, how to implement relationships between users, how to implement the stream of notifications of user actions, how to filter that stream for each user, etc...?

flag

2 Answers

vote up 4 vote down

This focuses more on the high level view of social networks and internet communities but also from a software point of view, Clay Shirky's "Here Comes Everybody", Jeff Attwood (one of the founders of this site) has blogged about him in the past.

link|flag
2  
+1 clay shirky is brilliant – pinku Nov 14 at 8:12
thanks, i just buyed the book, thanks again for recommandation. – pixel3cs Dec 8 at 23:47
vote up 1 vote down

You may start with OpenSocial to get an idea of a social network API. A general data structure for a social network is a graph, where users are nodes and relations are edges.

link|flag
Some things in the data model design are simple to understand and to implement (like the graph structure of relationships) but others are harder to me to design (in particular the stream of user actions) – electroportal Sep 17 at 14:17

Your Answer

Get an OpenID
or

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