Uses of Interface
org.hibernate.cache.spi.Region
-
Packages that use Region Package Description org.hibernate.cache.internal Internal implementations and support for second-level caching.org.hibernate.cache.jcache.internal org.hibernate.cache.spi Defines the integration aspect of Hibernate's second-level caching, allowing a "caching backend" to be plugged in as a cache provider.org.hibernate.cache.spi.support This package provides a framework intended to reduce the work needed to implement a caching provider.org.hibernate.stat.internal The built-in implementation of the statistics collection service. -
-
Uses of Region in org.hibernate.cache.internal
Methods in org.hibernate.cache.internal that return Region Modifier and Type Method Description Region
DisabledCaching. getRegion(String fullRegionName)
Region
EnabledCaching. getRegion(String regionName)
-
Uses of Region in org.hibernate.cache.jcache.internal
Classes in org.hibernate.cache.jcache.internal that implement Region Modifier and Type Class Description class
JCacheDomainDataRegionImpl
-
Uses of Region in org.hibernate.cache.spi
Subinterfaces of Region in org.hibernate.cache.spi Modifier and Type Interface Description interface
DirectAccessRegion
SpecializedRegion
whose data is accessed directly, without the need for key/item wrapping.interface
DomainDataRegion
A second-level cache region that holds cacheable domain data: the destructured state of entity instances and collections, and mappings from natural id to primary key.interface
QueryResultsRegion
Defines the contract for a cache region that stores query results.interface
TimestampsRegion
Defines the contract for a cache region that stores timestamps.Methods in org.hibernate.cache.spi that return Region Modifier and Type Method Description Region
CacheImplementor. getRegion(String regionName)
Get a cache Region by 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.stat.internal
Constructor parameters in org.hibernate.stat.internal with type arguments of type Region Constructor Description AbstractCacheableDataStatistics(Supplier<Region> regionSupplier)
-