Getting Started with Redis: Concepts, Commands, and Monitoring
## Introduction
Redis is a in-memory NoSQL database mainly used for caching. It's a key-value store which means each unique keys map to a value which could be either a stirng, list, set, hash, blob, JSON or any other data. Each keys are unique and can be queried...
Continue reading →
redis
nosql
database
python
Getting Started with Redis: Concepts, Commands, and Monitoring
## Introduction
Redis is a in-memory NoSQL database mainly used for caching. It's a key-value store which means each unique keys map to a value which could be either a stirng, list, set, hash, blob, JSON or any other data. Each keys are unique and can be queried...
Continue reading →
redis
nosql
python
Integration Test for redis / valkey using TestContainers
An integration test verifies that multiple components work together correctly within the full Spring context. Unlike unit tests, it loads the entire application context, including configuration, beans, and external dependencies like databases...
Continue reading →
valkey
redis
spring boot
java