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.spi |
Defines the Hibernate second level caching SPI.
|
org.hibernate.engine.spi | |
org.hibernate.internal |
An internal package containing mostly implementations of central Hibernate APIs.
|
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 | 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 |
---|---|
Region |
SessionFactoryImplementor.getNaturalIdCacheRegion(String regionName)
Get a named naturalId cache region
|
Region |
CacheImplementor.getNaturalIdCacheRegion(String regionName)
Get natural id cache region by its name.
|
Region |
SessionFactoryImplementor.getSecondLevelCacheRegion(String regionName)
Get a named second-level cache region
|
Region |
CacheImplementor.getSecondLevelCacheRegion(String regionName)
Get second level cache region by its name.
|
Modifier and Type | Method and Description |
---|---|
Map<String,Region> |
CacheImplementor.getAllSecondLevelCacheRegions()
Get all cache regions, including query cache.
|
Modifier and Type | Method and Description |
---|---|
void |
CacheImplementor.addCacheRegion(String name,
Region region)
Add
Region to this Cache scope. |
Modifier and Type | Method and Description |
---|---|
Region |
CacheImpl.getNaturalIdCacheRegion(String regionName) |
Region |
SessionFactoryImpl.getNaturalIdCacheRegion(String regionName) |
Region |
CacheImpl.getSecondLevelCacheRegion(String regionName) |
Region |
SessionFactoryImpl.getSecondLevelCacheRegion(String regionName) |
Modifier and Type | Method and Description |
---|---|
Map<String,Region> |
CacheImpl.getAllSecondLevelCacheRegions() |
Modifier and Type | Method and Description |
---|---|
void |
CacheImpl.addCacheRegion(String name,
Region region) |
Copyright © 2001-2015 Red Hat, Inc. All Rights Reserved.