mirror of
https://github.com/donnemartin/system-design-primer.git
synced 2025-07-18 08:21:31 +03:00
Fix typos in Twitter and web crawler exercises (#438)
This commit is contained in:
@@ -26,7 +26,7 @@ Without an interviewer to address clarifying questions, we'll define some use ca
|
||||
#### Out of scope
|
||||
|
||||
* **Service** pushes tweets to the Twitter Firehose and other streams
|
||||
* **Service** strips out tweets based on user's visibility settings
|
||||
* **Service** strips out tweets based on users' visibility settings
|
||||
* Hide @reply if the user is not also following the person being replied to
|
||||
* Respect 'hide retweets' setting
|
||||
* Analytics
|
||||
@@ -129,7 +129,7 @@ If our **Memory Cache** is Redis, we could use a native Redis list with the foll
|
||||
| tweet_id user_id meta | tweet_id user_id meta | tweet_id user_id meta |
|
||||
```
|
||||
|
||||
The new tweet would be placed in the **Memory Cache**, which populates user's home timeline (activity from people the user is following).
|
||||
The new tweet would be placed in the **Memory Cache**, which populates the user's home timeline (activity from people the user is following).
|
||||
|
||||
We'll use a public [**REST API**](https://github.com/donnemartin/system-design-primer#representational-state-transfer-rest):
|
||||
|
||||
|
Reference in New Issue
Block a user