# Redis Crash Course

### Context:

**Redis** (Remote Dictionary Server) is an **in-memory key-value store**, used as a **cache**, **message broker**, or even a lightweight **database**.

* **Blazing fast** because data is in memory
    
* Supports **data persistence**
    
* Built-in **pub/sub**, **streams**, and **transactions**
    

---
