Some questions about memcached
I would like to implement memcache on my social network site, being a social network most data changes very frequently, For example if I were to store a users 10,000 friends into cache, anytime he adds a friend cache would need to update, easy enough but also it would need to update anytime someone else added them as a friend, thats a lot of updating just on friend list alone
There is also user blogs and bulletins which are posted non stop with new ones and you can only see the ones that are created by a user in your friend list, so I think this would be very hard to cache.
SO a question now, I could see possibly caching some profile info that only changes on user updates profile, but this would create a cache record for every user, if there are 100,000+ users thats a lot of caching, is this possible or not a good idea?
ALso any tutorials on memcache you recomend?