This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cache - Redis [doc redis](https://redis.io/docs/latest/develop/get-started/data-store/) | |
### Armazenando Strings | |
``` | |
# Guarda um json em string no cache, usando a chave user:1 | |
SET user:1 '{"client": {"name": "dennis"}' | |
# Busca pelo registro user:1 e retorna | |
GET user:1 | |
``` | |
### Armazenando em hash |