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.
Available Cache Stores
Soft-Index Cache Store
This cache store implementation persists data to filesystem, using memory-cached index offloaded to filesystem.
DocumentationJDBC Cache Store
This cache store implementation persists data to a relational database via a JDBC driver.
DocumentationSQL Cache Store
This cache store implementation persists data to a relational database via a JDBC driver.
DocumentationJPA Cache Store (removed since 14.0)
This cache store implementation persists data to a relational database via the JPA interface.
DocumentationRemote Cache Store
This cache store implementation persists data to a remote Infinispan cluster, over the Hot Rod wire protocol, effectively chaining clusters together.
DocumentationSingle File Cache Store (deprecated)
This cache store implementation persists data to the filesystem in a single file.
Documentation

