BigMemory Go 4.3.7 | About BigMemory Go | BigMemory Go Overview | Basic Terms
 
Basic Terms
Cache
Wiktionary defines a cache as "a store of things that will be required in the future, and can be retrieved rapidly." A cache is a collection of temporary data that either duplicates data located elsewhere or is the result of a computation. Data that is already in the cache can be repeatedly accessed with minimal costs in terms of time and resources.
Cache hit
When a data element is requested from cache and the element exists for the given key, it is referred to as a cache hit (or simply, "a hit").
Cache miss
When a data element is requested from cache and the element does not exist for the given key, it is referred to as a cache miss (or simply, "a miss").
System-of-Record
The authoritative source of truth for the data. The cache acts as a local copy of data retrieved from or stored to the system-of-record (SOR). The SOR is often a traditional database, although it might be a specialized file system or some other reliable long-term storage. For the purposes of using Ehcache, the SOR is assumed to be a database.

Copyright © 2010-2019 | Software AG, Darmstadt, Germany and/or Software AG USA, Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors.