Skip to content

Instantly share code, notes, and snippets.

View DennisGabriel-Dev's full-sized avatar
🏠
Working from home

Dennis Gabriel DennisGabriel-Dev

🏠
Working from home
View GitHub Profile
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