Introduction

Redis is an in-memory data store. It can be used as a NoSQL database, cache, or as a typical message broker.

It’s written in ANSI C, which compiles into significantly efficient machine code and its ability to store data as key-value pairs makes in-memory caching an attractive use-case for Redis, besides also persisting data to a disk.

In this article, we’ll use Pipelining to allow a Spring Boot application to send multiple requests to the Redis server, in a non-blocking way.

#java #redis #spring boot #spring

Spring Boot with Redis: Pipeline Operations
5.00 GEEK