Downloads Persistent Cache Stores

Persistent Cache Stores

Cache stores let Infinispan persist data either to disk or some other form of durable storage. Infinispan offers several default cache store implementations as well as a Persistence SPI that lets you easily create your own cache store.

Infinispan Cache Stores

Infinispan offers several cache store implementations that are available with each release. Check out the documentation and find out how to add cache stores to your deployment.

Soft-Index Cache Store

This cache store implementation persists data to filesystem, using memory-cached index offloaded to filesystem.

Documentation
JDBC Cache Store

This cache store implementation persists data to a relational database via a JDBC driver.

Documentation
SQL Cache Store

This cache store implementation persists data to a relational database via a JDBC driver.

Documentation
JPA Cache Store (removed since 14.0)

This cache store implementation persists data to a relational database via the JPA interface.

Documentation
RocksDB Cache Store

This cache store implementation persists data to RocksDB.

Documentation
Remote Cache Store

This cache store implementation persists data to a remote Infinispan cluster, over the Hot Rod wire protocol, effectively chaining clusters together.

Documentation
Single File Cache Store (deprecated)

This cache store implementation persists data to the filesystem in a single file.

Documentation