Cross-reference the reference documentation and sample guide for Inline Caching with Spring using Apache Geode.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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<String> 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
|
||||
|
||||
Reference in New Issue
Block a user