On Mon, Jul 21, 2014 at 3:27 AM, Aake Gregertsen <[email protected]> wrote:
> What's the best way to implement a twitter like feed on GAE? I'm guessing > an IN query with thousands of users would be extremely slow. What are my > options here since each user will have a unique feed depending on how they > are subscribed to. > There's a good overview at http://highscalability.com/blog/2013/7/8/the-architecture-twitter-uses-to-deal-with-150m-active-users.html but the TL;DR is that there's a lot of writing going on. As Jay said, the best solution would probably be rolling out a Prospective Search (or similar) service to test for interesting messages, then write them into the individual account feeds. ----------------- -Vinny P Technology & Media Consultant Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
