How and why Redis is so fast:
- Redis is an on-memory (RAM) database.
- It is single thread (no-lock system).
- Utilizes IO multiplexing to deal with simultaneously connections.
- Simple implementation of data structures due to the lack worries of persistence details.
