Correct Redis list structure in Twitter solution (#116)

This commit is contained in:
Tony Yao 2017-11-29 17:12:15 -08:00 committed by Donne Martin
parent f631baaef3
commit d62b499013

View File

@ -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 |
```