Skip to content

Commit e276822

Browse files
glusa8donnemartin
glusa8
authored andcommitted
Fix typo in Twitter timeline and search solution (donnemartin#251)
1 parent 970d006 commit e276822

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

solutions/system_design/twitter/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ We'll introduce some components to complete the design and to address scalabilit
249249

250250
The **Fanout Service** is a potential bottleneck. Twitter users with millions of followers could take several minutes to have their tweets go through the fanout process. This could lead to race conditions with @replies to the tweet, which we could mitigate by re-ordering the tweets at serve time.
251251

252-
We could also avoid fanning out tweets from highly-followed users. Instead, we could search to find tweets for high-followed users, merge the search results with the user's home timeline results, then re-order the tweets at serve time.
252+
We could also avoid fanning out tweets from highly-followed users. Instead, we could search to find tweets for highly-followed users, merge the search results with the user's home timeline results, then re-order the tweets at serve time.
253253

254254
Additional optimizations include:
255255

0 commit comments

Comments
 (0)