From be76266a9e1573c027960242bacf0ddf83a8a6d4 Mon Sep 17 00:00:00 2001 From: John Blum Date: Wed, 20 Jan 2021 11:42:21 -0800 Subject: [PATCH] Edit 'Caching with Apache Geode' chapter by moving references to the Guide and Sample code for 'Inline Caching' under the 'Synchronous Inline Caching' sub-section. --- spring-geode-docs/src/docs/asciidoc/_includes/caching.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-geode-docs/src/docs/asciidoc/_includes/caching.adoc b/spring-geode-docs/src/docs/asciidoc/_includes/caching.adoc index fcb5b715..142f9682 100644 --- a/spring-geode-docs/src/docs/asciidoc/_includes/caching.adoc +++ b/spring-geode-docs/src/docs/asciidoc/_includes/caching.adoc @@ -236,9 +236,6 @@ that might have been changed by other clients accessing the same data. [[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 {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 @@ -251,6 +248,9 @@ external data source. [[geode-caching-provider-inline-caching-synchronous]] ===== Synchronous 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 {geode-name} in action! + When employing _Inline Caching_ and a cache miss occurs, the application service method may still not be invoked since a cache can be configured to invoke a loader to load the missing entry from an backend, external data source.