Redis uses by default asynchronous replication between master and slaves
Slaves replicate the data from the master and handle read operations only.
So there is always a window where Slaves do not have latest data and can serve stale data
This means Redis is AP and not CP ?