May 2015
Intermediate to advanced
464 pages
10h 19m
English
Perhaps the most common caching pattern in use today is cache-aside. In this strategy, an application populates a cache lazily, as applications request data, and as the system runs, the cache client gradually populates the cache to contain most of the data that it refers to frequently.
In this pattern, the cache doesn't interact with the database; it is kept aside as a more scalable in-memory data store.
Infinispan will always attempt to load data from CacheStore or CacheLoader. We are talking about a situation where the data comes from an external data store, such as a database.
Consider a simple Reference Data Service example, which will be used to store and retrieve reference data, as the meaning ...
Read now
Unlock full access