From 140c1697995b09264d2752b3933b47a67b4ce5ce Mon Sep 17 00:00:00 2001 From: Michael Reiche <48999328+mikereiche@users.noreply.github.com> Date: Tue, 9 May 2023 14:14:29 -0700 Subject: [PATCH] Fix Typo in Cache Documentation. (#1734) Closes #1525. --- src/main/asciidoc/caching.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/caching.adoc b/src/main/asciidoc/caching.adoc index 5aacff6a..cffc00b5 100644 --- a/src/main/asciidoc/caching.adoc +++ b/src/main/asciidoc/caching.adoc @@ -54,4 +54,4 @@ public String simulateLongRun(long time) { If you run the method multiple times, you'll see a set operation happening first, followed by multiple get operations and no sleep time (which fakes the expensive execution). You can store whatever you want, if it is JSON of course you can access it through views and look at it in the Web UI. -Note that to use cache.clear() or catch.invalidate(), the bucket must have a primary key. +Note that to use cache.clear() or cache.invalidate(), the bucket must have a primary key.