↧
Answer by my-nick for NewsFeed with Redis At Scale Stratagy
Currently we store things like comments, likes and such in individual Redis keys in JSON encoded strings by post IDUse more efficient serializer, like igbinary or msgpack. I suggest igbinary (check...
View ArticleAnswer by Daniel for NewsFeed with Redis At Scale Stratagy
You may want to use a mongodb as @solocommand has described, but you may want to stop the expectation that you "update" data on demand. Instead push your users changes into a "write" queue, which will...
View ArticleNewsFeed with Redis At Scale Stratagy
I'm running into an interesting dilema while trying to solve a scale problem. Current we have a social platform that has a pretty typical feed. We are using a graph database and each time a feed is...
View Article