diff --git a/spring-geode-docs/src/docs/asciidoc/_includes/caching.adoc b/spring-geode-docs/src/docs/asciidoc/_includes/caching.adoc index 6ef2bbe5..43e5e074 100644 --- a/spring-geode-docs/src/docs/asciidoc/_includes/caching.adoc +++ b/spring-geode-docs/src/docs/asciidoc/_includes/caching.adoc @@ -235,6 +235,9 @@ in the Region that might have been changed by other clients accessing the same d [[geode-caching-provider-inline-caching]] ==== Inline Caching +TIP: Refer to the corresponding Sample link:guides/caching-inline.html[Guide] and {github-samples-url}/caching/inline[Code] +to see _Inline Caching_ using {apache-geode-name} in action! + The next pattern of caching we will discuss in this chapter is _Inline Caching_. There are two different configurations of _Inline Caching_ that developers can apply to their Spring Boot applications diff --git a/spring-geode-docs/src/docs/asciidoc/guides/caching-inline.adoc b/spring-geode-docs/src/docs/asciidoc/guides/caching-inline.adoc index e47dc0ef..3776326a 100644 --- a/spring-geode-docs/src/docs/asciidoc/guides/caching-inline.adoc +++ b/spring-geode-docs/src/docs/asciidoc/guides/caching-inline.adoc @@ -30,6 +30,10 @@ guide. Therefore, it would be helpful to have read that guide before proceeding Let's begin. +TIP: Refer to the link:../index.html#geode-caching-provider-inline-caching[Inline Caching] section +in the link:../index.html#geode-caching-provider[Caching with Apache Geode or VMware Tanzu GemFire] chapter +in the reference documentation for more information. + [#index-link] link:../index.html[Index] @@ -218,7 +222,7 @@ all regions by simply supplying the following `Predicate`: .Predicate targeting all caches (Regions) [source,java] ---- -regionBeanName -> true; +Predicate predicate = () -> regionBeanName -> true; ---- In our case, we only want to target the Regions that have been used as "caches" as identified in the service methods