Tag

Spring Cache

0 views collected around this technical thread.

Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
May 17, 2025 · Backend Development

Master Spring Boot Cache Management with Actuator: An End‑to‑End Guide

This article explains how to use Spring Boot Actuator to monitor and control Spring Cache, covering essential cache annotations, a complete CRUD example with caching, cache management endpoints, custom CacheManager configuration, and optional Redis integration for production‑grade caching.

ActuatorJavaSpring Boot
0 likes · 9 min read
Master Spring Boot Cache Management with Actuator: An End‑to‑End Guide
Spring Full-Stack Practical Cases
Spring Full-Stack Practical Cases
Oct 14, 2023 · Backend Development

Master Spring Cache with JSR‑107 and Ehcache: A Step‑by‑Step Guide

This tutorial explains how to enable and use Spring Cache with annotations like @Cacheable, @CacheEvict, and @CachePut, integrates JSR‑107 and Ehcache, provides full Maven and configuration examples, and demonstrates caching behavior through a series of practical code snippets and tests.

Backend DevelopmentCachingEhcache
0 likes · 10 min read
Master Spring Cache with JSR‑107 and Ehcache: A Step‑by‑Step Guide
Sanyou's Java Diary
Sanyou's Java Diary
Feb 20, 2023 · Backend Development

Mastering Spring Cache: From Hard‑Coded to Multi‑Level Redis Integration

This tutorial walks through the evolution from manual Redis calls to Spring Cache abstraction, explains AOP‑based proxying, details core annotations, demonstrates Caffeine and Redisson integration, explores list caching, and shows how to build a custom two‑level cache for high‑performance Java back‑ends.

Backend DevelopmentCachingJava
0 likes · 18 min read
Mastering Spring Cache: From Hard‑Coded to Multi‑Level Redis Integration
Java Architecture Diary
Java Architecture Diary
Jan 5, 2023 · Databases

Why Dragonfly DB Claims 25× Redis Speed and How to Get Started

Dragonfly DB is a high‑performance, Memcached‑ and Redis‑compatible in‑memory database that reportedly delivers up to 25× Redis throughput, with a shared‑nothing, multithreaded architecture; this guide shows quick Docker deployment on Linux/macOS, client access methods, Spring cache integration, and key usage notes.

Docker DeploymentDragonflyDBIn-Memory Database
0 likes · 3 min read
Why Dragonfly DB Claims 25× Redis Speed and How to Get Started
HomeTech
HomeTech
Dec 15, 2022 · Backend Development

Building a Two-Level Cache Framework to Solve Spring-Cache Problems

This article introduces a two-level cache framework designed to address issues with Spring-Cache, providing enhanced caching strategies and improved performance in Java-based backend systems.

Backend DevelopmentCachingJava
0 likes · 10 min read
Building a Two-Level Cache Framework to Solve Spring-Cache Problems
IT Services Circle
IT Services Circle
Apr 26, 2022 · Databases

How to Install, Integrate, and Use Redis with Spring Boot

This article introduces Redis, explains how to install it on various platforms, demonstrates integrating Redis with Spring Boot using Spring Cache annotations, configures connection pools for Lettuce and Jedis, and provides custom Redis service implementations for flexible cache operations.

CachingDatabaseJava
0 likes · 14 min read
How to Install, Integrate, and Use Redis with Spring Boot
macrozheng
macrozheng
Apr 15, 2022 · Backend Development

Mastering Spring Cache: From Hard‑Coded to Multi‑Level Caching with Redis and Caffeine

This article walks through adapting a custom Redis client to Spring Cache, explains the cache abstraction, demonstrates annotation‑driven caching, shows how to integrate Caffeine and Redisson, and builds a simple two‑level cache to illustrate advanced scenarios for Spring Cache users.

CachingJavaRedis
0 likes · 24 min read
Mastering Spring Cache: From Hard‑Coded to Multi‑Level Caching with Redis and Caffeine
macrozheng
macrozheng
Jul 5, 2021 · Backend Development

Master Spring Cache: Simplify Caching Across Redis, Ehcache, and More

This article introduces Spring Cache as a unified caching solution that abstracts away the specifics of Redis, Ehcache, and other providers, explains its core concepts, annotations, configuration, and demonstrates practical usage with code examples to eliminate manual cache handling.

CachingEhcacheJava
0 likes · 16 min read
Master Spring Cache: Simplify Caching Across Redis, Ehcache, and More
Top Architect
Top Architect
Sep 13, 2020 · Backend Development

Java Distributed Caching with Redis and Redisson

This article explains why caching is essential for Java distributed applications, introduces Redis as an in‑memory data store, and demonstrates how the Redisson framework provides distributed cache implementations—including RMapCache, Spring Cache integration, and JCache support—complete with code examples and configuration details.

JCacheJavaRedis
0 likes · 8 min read
Java Distributed Caching with Redis and Redisson
macrozheng
macrozheng
Mar 16, 2020 · Backend Development

Mastering Spring Data Redis: Installation, Caching, and Advanced Usage

This comprehensive guide walks you through installing Redis on Linux and Windows, configuring Spring Cache annotations, setting up JSON serialization with RedisTemplate, using connection pools, and implementing a flexible RedisService with controller examples, providing all the essential steps to integrate Redis into your Spring Boot applications.

Backend DevelopmentJavaRedis
0 likes · 25 min read
Mastering Spring Data Redis: Installation, Caching, and Advanced Usage
Java Captain
Java Captain
Dec 20, 2019 · Backend Development

Using Redisson for Distributed Caching in Java Applications

This article explains why caching is essential for Java distributed applications, introduces Redis and Redisson, and demonstrates how to implement distributed caches using Redisson Maps, Spring Cache integration, and the JCache API with practical code examples.

JCacheJavaRedis
0 likes · 6 min read
Using Redisson for Distributed Caching in Java Applications
Java Architecture Diary
Java Architecture Diary
Mar 24, 2019 · Backend Development

How to Extend Spring Cache for Multi‑Tenant Isolation and TTL

This article explains Spring's annotation‑based caching, analyzes why the default cache key collides in multi‑tenant scenarios, shows how to embed tenant identifiers into keys, and provides a custom CacheManager implementation that parses TTL from the cache name and applies it to Redis entries.

CacheManagerJavaRedis
0 likes · 5 min read
How to Extend Spring Cache for Multi‑Tenant Isolation and TTL
Qunar Tech Salon
Qunar Tech Salon
Sep 7, 2017 · Backend Development

Understanding Caching in Java with Spring Cache, Ehcache, and Redis

This article explains the concept of caching in Java, the importance of reducing database I/O, introduces Spring Cache annotations and their limitations, demonstrates conditional caching with code examples, and provides configuration details for integrating Ehcache and Redis as cache providers.

AnnotationsCachingEhcache
0 likes · 10 min read
Understanding Caching in Java with Spring Cache, Ehcache, and Redis