Skip to content

Commit

Permalink
Correct Redis list structure in Twitter solution (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaoxiaotong authored and donnemartin committed Dec 2, 2017
1 parent 5aab10a commit c4f591f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solutions/system_design/twitter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ If our **Memory Cache** is Redis, we could use a native Redis list with the foll

```
tweet n+2 tweet n+1 tweet n
| 8 bytes 8 bytes 1 byte | 8 bytes 8 bytes 1 byte | 8 bytes 7 bytes 1 byte |
| 8 bytes 8 bytes 1 byte | 8 bytes 8 bytes 1 byte | 8 bytes 8 bytes 1 byte |
| tweet_id user_id meta | tweet_id user_id meta | tweet_id user_id meta |
```

Expand Down

0 comments on commit c4f591f

Please sign in to comment.