Package | Description |
---|---|
org.infinispan.persistence.jdbc.binary |
This JDBC CacheStore implementation is optimized for storing binary (non-String)
keys in the cache.
|
org.infinispan.persistence.jdbc.common |
The common classes for JDBC store (binary, string and mixed)
|
org.infinispan.persistence.jdbc.mixed |
This is a delegating CacheStore implementation that delegates either to a binary
or String based JDBC cache store depending on the key used.
|
org.infinispan.persistence.jdbc.stringbased |
This JDBC CacheStore implementation is optimized for storing String
keys in the cache.
|
Modifier and Type | Class and Description |
---|---|
class |
JdbcBinaryStore<K,V>
AdvancedLoadWriteStore implementation that will store all the buckets as rows
in database, each row corresponding to a bucket. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractJdbcStore<K,V> |
Modifier and Type | Class and Description |
---|---|
class |
JdbcMixedStore<K,V>
Cache store that combines functionality of
JdbcBinaryStore and JdbcStringBasedStore . |
Modifier and Type | Class and Description |
---|---|
class |
JdbcStringBasedStore<K,V>
AdvancedCacheLoader implementation that stores the entries in a database. |
Copyright © 2018 JBoss, a division of Red Hat. All rights reserved.