flowchart LR
REQ[Petición findById 42] --> CHECK{¿Está en caché?}
CHECK -->|Sí| HIT[Cache HIT - Retorna rápido]
CHECK -->|No| MISS[Cache MISS]
MISS --> DB[(Base de Datos)]
DB --> STORE[Guarda en caché]
STORE --> RES[Retorna resultado]
style HIT fill:#50fa7b,color:#000
style MISS fill:#ff5555,color:#fff
style STORE fill:#8be9fd,color:#000
