We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b277c3b commit 7bc9187Copy full SHA for 7bc9187
caching/src/main/java/com/iluwatar/caching/App.java
@@ -133,7 +133,7 @@ public static void main(final String[] args) {
133
LOGGER.info(splitLine);
134
app.useReadThroughAndWriteBehindStrategy();
135
136
- app.useCacheAsideStategy();
+ app.useCacheAsideStrategy();
137
138
}
139
@@ -224,7 +224,7 @@ public void useReadThroughAndWriteBehindStrategy() {
224
/**
225
* Cache-Aside.
226
*/
227
- public void useCacheAsideStategy() {
+ public void useCacheAsideStrategy() {
228
LOGGER.info("# CachingPolicy.ASIDE");
229
appManager.initCachingPolicy(CachingPolicy.ASIDE);
230
LOGGER.info(appManager.printCacheContent());
0 commit comments