Uses of Interface
org.hibernate.cache.spi.Region
-
Packages that use Region Package Description org.hibernate.cache.spi Defines the integration aspect of Hibernate's second-level caching allowing "caching back ends" to be plugged in as a caching provider.org.hibernate.cache.spi.support Package intended for simplifying the worked needed to implement a caching provider.org.hibernate.engine.spi -
-
Uses of Region in org.hibernate.cache.spi
Subinterfaces of Region in org.hibernate.cache.spi Modifier and Type Interface Description interface
DirectAccessRegion
Specialized Region whose data is accessed directly (not requiring key/item wrapping, e.g.interface
DomainDataRegion
A Region for cacheable domain data - entity, collection, natural-id.interface
QueryResultsRegion
Defines the contract for a cache region which will specifically be used to store query results.interface
TimestampsRegion
Methods in org.hibernate.cache.spi that return Region Modifier and Type Method Description Region
CacheImplementor. getRegion(java.lang.String regionName)
Get a cache Region by name.default Region
CacheImplementor. getRegionByLegacyName(java.lang.String legacyName)
Deprecated.No replacement - added just for support of the newly deprecated methods expecting a qualified region name -
Uses of Region in org.hibernate.cache.spi.support
Classes in org.hibernate.cache.spi.support that implement Region Modifier and Type Class Description class
AbstractDomainDataRegion
class
AbstractRegion
class
DirectAccessRegionTemplate
Bridge between DirectAccessRegion and StorageAccessclass
DomainDataRegionImpl
class
DomainDataRegionTemplate
Abstract implementation ofDomainDataRegion
based on implementations just needing to provide aDomainDataStorageAccess
reference for basic caching support - DomainDataStorageAccess acts as a simple wrapper around some generalized cache actions such as put or get.class
QueryResultsRegionTemplate
class
TimestampsRegionTemplate
-
Uses of Region in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return Region Modifier and Type Method Description Region
CacheImplementor. getRegion(java.lang.String regionName)
Deprecated.Get a cache Region by namedefault Region
CacheImplementor. getRegionByLegacyName(java.lang.String legacyName)
Deprecated.No replacement - added just for support of the newly deprecated methods expecting a qualified region name
-