Caching mechanism

As soon as you access an asset of the type that the solution caches, a copy of the asset is immediately added to the cache on your computer. The next time you access the asset, the solution first checks the last modified date time stamp on the asset (to check for updates). If the asset is unchanged since the last time you accessed it, the asset is retrieved from the cache. If the asset is changed, it is first re-cached and then made available.

The Correspondence Management solution implements the LRU (least recently used) caching algorithm. When the cache is full, the oldest asset in the cache is pushed out to make way for the newest asset.

// Ethnio survey code removed