Polish the Async Inline Caching Sample Guide based on review and feedback.

Add (URL) links to the Sample Guide and Code Example in the 'Asynchronous Inline Caching' section of the 'Caching with Apache Geode' chapter in the reference documentation.

Correct the Code Example URL in the samples.adoc for the Asynchronous Inline Caching Sample.
This commit is contained in:
John Blum
2020-12-09 11:19:49 -08:00
parent 1a33f03e3a
commit a840c6a18d
4 changed files with 102 additions and 85 deletions

View File

@@ -69,8 +69,8 @@ public class AsyncInlineCachingConfiguration {
GolferRepository golferRepository) {
return AsyncInlineCachingRegionConfigurer.create(golferRepository, GOLFERS_REGION_NAME)
.withQueueBatchTimeInterval(Duration.ofMillis(queueBatchTimeIntervalMilliseconds))
.withQueueBatchSize(1000000)
.withQueueBatchTimeInterval(Duration.ofMillis(queueBatchTimeIntervalMilliseconds))
.withQueueDispatcherThreadCount(1);
}
// end::queue-batch-time-interval[]