이 콘텐츠는 선택한 언어로 제공되지 않습니다.
Chapter 17. Cache Stores
The cache store connects Red Hat JBoss Data Grid to the persistent data store. Cache stores are associated with individual caches. Different caches attached to the same cache manager can have different cache store configurations.
Note
If a clustered cache is configured with an unshared cache store (where
shared is set to false), on node join, stale entries which might have been removed from the cluster might still be present in the stores and can reappear.
17.1. Cache Loaders and Cache Writers 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
Integration with the persistent store is done through the following SPIs located in
org.infinispan.persistence.spi:
CacheLoaderCacheWriterAdvancedCacheLoaderAdvancedCacheWriter
CacheLoader and CacheWriter provide basic methods for reading and writing to a store. CacheLoader retrieves data from a data store when the required data is not present in the cache, and CacheWriter is used to enforce entry passivation and activation on eviction in a cache.
AdvancedCacheLoader and AdvancedCacheWriter provide operations to manipulate the underlying storage in bulk: parallel iteration and purging of expired entries, clear and size.
The
org.infinispan.persistence.file.SingleFileStore is a good starting point to write your own store implementation.
Note
Previously, JBoss Data Grid used the old API (
CacheLoader, extended by CacheStore), which is also still available.