Caching pattern: Implementation of Cache-Aside pattern

This commit is contained in:
Christoffer Hamberg
2016-09-22 20:41:26 +02:00
parent e3355d76d1
commit b31edda3cf
5 changed files with 79 additions and 1 deletions

View File

@@ -60,4 +60,9 @@ public class CachingTest {
public void testReadThroughAndWriteBehindStrategy() {
app.useReadThroughAndWriteBehindStrategy();
}
@Test
public void testCacheAsideStrategy() {
app.useCacheAsideStategy();
}
}