About 41,300 results
Open links in new tab
  1. Cacheable (Spring Framework 7.0.2 API)

    Annotation indicating that the result of invoking a method (or all methods in a class) can be cached. Each time an advised method is invoked, caching behavior will be applied, checking whether the …

  2. A Guide To Caching in Spring - Baeldung

    Dec 3, 2025 · The difference between @Cacheable and @CachePut is that @Cacheable will skip running the method, whereas @CachePut will actually run the method and then put its results in the …

  3. Spring Boot Caching with Example - HowToDoInJava

    Sep 13, 2023 · Learn to enable and configure caching in a Spring boot application using @EnableCaching, @Cacheable, @CachePut and @CacheEvict annotations.

  4. Spring Boot @Cacheable Annotation – Improve Performance with …

    Mar 9, 2025 · Learn how to use the @Cacheable annotation in Spring Boot to improve performance by reducing database calls. Includes real-world examples with Redis and in-memory caching.

  5. Mastering Java @Cacheable: A Comprehensive Guide

    Nov 12, 2025 · @Cacheable is an annotation provided by the Spring Framework for enabling caching at the method level. When a method annotated with @Cacheable is invoked, Spring checks if the result …

  6. Spring Boot @Cacheable Annotation - Java Guides

    Learn how to use the @Cacheable annotation in Spring Boot to improve performance by reducing database calls. Includes real-world examples with Redis.

  7. Cacheable - @cacheable/utils

    The @cacheable/utils package provides hash functions that can be used to generate unique keys for caching operations. These functions are useful for creating consistent and unique identifiers for …

  8. cacheable - npm

    cacheable is a high performance layer 1 / layer 2 caching engine that is focused on distributed caching with enterprise features such as CacheSync (coming soon). It is built on top of the robust storage …

  9. Spring Boot Pro Tip: Boost Performance with @Cacheable + Java 17

    Mar 17, 2025 · Using @Cacheable, you can reduce unnecessary queries, speed up responses, and improve scalability. Let’s explore how to cache efficiently and avoid common pitfalls.

  10. Declarative Annotation-based Caching :: Spring Framework

    As the name implies, you can use @Cacheable to demarcate methods that are cacheable — that is, methods for which the result is stored in the cache so that, on subsequent invocations (with the same …