Package | Description |
---|---|
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 | 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 |
SessionFactoryDelegatingImpl.getNaturalIdCacheRegion(String regionName) |
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 |
SessionFactoryDelegatingImpl.getSecondLevelCacheRegion(String regionName) |
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 |
SessionFactoryImpl.getNaturalIdCacheRegion(String regionName) |
Region |
CacheImpl.getNaturalIdCacheRegion(String regionName) |
Region |
SessionFactoryImpl.getSecondLevelCacheRegion(String regionName) |
Region |
CacheImpl.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 © 2017 JBoss by Red Hat. All rights reserved.