Why should I avoid the KEYS command in production Redis?
`KEYS pattern` scans the entire keyspace in one blocking call, which can stall the server on large datasets since Redis is single-threaded. Use `SCAN`, which iterates in small batches via a cursor and does not block other clients.