Package | Description |
---|---|
org.hibernate.cache.ehcache.internal.regions |
Defines
RegionFactory support for the Ehcache integration |
org.hibernate.cache.infinispan.collection |
Internal Infinispan-based implementation of the collection cache region
|
org.hibernate.cache.infinispan.entity |
Internal Infinispan-based implementation of the entity cache region
|
org.hibernate.cache.infinispan.impl |
Internal Infinispan-specific base cache region implementations
|
org.hibernate.cache.infinispan.naturalid |
Internal Infinispan-based implementation of the natural-id cache region
|
org.hibernate.cache.infinispan.query |
Internal Infinispan-based implementation of the "query results" cache region
|
org.hibernate.cache.infinispan.timestamp |
Internal Infinispan-based implementation of the "update timestamps" cache region
|
org.hibernate.cache.jcache |
Hibernate caching provider for JSR-107 compliant caches.
|
org.hibernate.cache.spi |
Defines the Hibernate second level caching SPI.
|
org.hibernate.engine.spi |
Modifier and Type | Class and Description |
---|---|
class |
EhcacheCollectionRegion
A collection region specific wrapper around an Ehcache instance.
|
class |
EhcacheDataRegion
An Ehcache specific data region implementation.
|
class |
EhcacheEntityRegion
An entity region specific wrapper around an Ehcache instance.
|
class |
EhcacheNaturalIdRegion
A collection region specific wrapper around an Ehcache instance.
|
class |
EhcacheQueryResultsRegion
A query results region specific wrapper around an Ehcache instance.
|
class |
EhcacheTimestampsRegion
A timestamps region specific wrapper around an Ehcache instance.
|
class |
EhcacheTransactionalDataRegion
An Ehcache specific TransactionalDataRegion.
|
Modifier and Type | Class and Description |
---|---|
class |
CollectionRegionImpl
Collection region implementation
|
Modifier and Type | Class and Description |
---|---|
class |
EntityRegionImpl
Entity region implementation
|
Modifier and Type | Class and Description |
---|---|
class |
BaseGeneralDataRegion
Support for Infinispan
GeneralDataRegion implementors. |
class |
BaseRegion
Support for Infinispan
Region s. |
class |
BaseTransactionalDataRegion
Support for Inifinispan
TransactionalDataRegion implementors. |
Modifier and Type | Class and Description |
---|---|
class |
NaturalIdRegionImpl
Natural ID cache region
|
Modifier and Type | Class and Description |
---|---|
class |
QueryResultsRegionImpl
Region for caching query results.
|
Modifier and Type | Class and Description |
---|---|
class |
ClusteredTimestampsRegionImpl
Timestamp cache region for clustered environments.
|
class |
TimestampsRegionImpl
Defines the behavior of the timestamps cache region for Infinispan.
|
Modifier and Type | Class and Description |
---|---|
class |
JCacheCollectionRegion |
class |
JCacheEntityRegion |
class |
JCacheGeneralDataRegion |
class |
JCacheNaturalIdRegion |
class |
JCacheQueryResultsRegion |
class |
JCacheRegion |
class |
JCacheTimestampsRegion |
class |
JCacheTransactionalDataRegion |
Modifier and Type | Interface and Description |
---|---|
interface |
CollectionRegion
Defines the contract for a cache region which will specifically be used to
store collection data.
|
interface |
EntityRegion
Defines the contract for a cache region which will specifically be used to
store entity data.
|
interface |
GeneralDataRegion
Contract for general-purpose cache regions.
|
interface |
NaturalIdRegion
Defines the contract for a cache region which will specifically be used to
store naturalId data.
|
interface |
QueryResultsRegion
Defines the contract for a cache region which will specifically be used to
store query results.
|
interface |
TimestampsRegion
Defines the contract for a cache region which will specifically be used to
store entity "update timestamps".
|
interface |
TransactionalDataRegion
Defines contract for regions which hold transactionally-managed data.
|
Modifier and Type | Method and Description |
---|---|
default Region |
SessionFactoryImplementor.getNaturalIdCacheRegion(java.lang.String regionName)
Deprecated.
(since 5.2) Use this factory's
SessionFactoryImplementor.getCache() ->
CacheImplementor.getNaturalIdCacheRegionAccessStrategy(String) ->
NaturalIdRegionAccessStrategy.getRegion() instead. |
Region |
SessionFactoryDelegatingImpl.getNaturalIdCacheRegion(java.lang.String regionName) |
default Region |
SessionFactoryImplementor.getSecondLevelCacheRegion(java.lang.String regionName)
Deprecated.
(since 5.2) Use this factory's
SessionFactoryImplementor.getCache() reference
to access Region via CacheImplementor.determineEntityRegionAccessStrategy(org.hibernate.mapping.PersistentClass) or
CacheImplementor.determineCollectionRegionAccessStrategy(org.hibernate.mapping.Collection) instead. |
Region |
SessionFactoryDelegatingImpl.getSecondLevelCacheRegion(java.lang.String regionName) |
Copyright © 2001-2018 Red Hat, Inc. All Rights Reserved.