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 RegionDisabledCaching. getRegion(String fullRegionName)RegionEnabledCaching. 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 classJCacheDomainDataRegionImpl -
Uses of Region in org.hibernate.cache.spi
Subinterfaces of Region in org.hibernate.cache.spi Modifier and Type Interface Description interfaceDirectAccessRegionSpecializedRegionwhose data is accessed directly, without the need for key/item wrapping.interfaceDomainDataRegionA 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.interfaceQueryResultsRegionDefines the contract for a cache region that stores query results.interfaceTimestampsRegionDefines the contract for a cache region that stores timestamps.Methods in org.hibernate.cache.spi that return Region Modifier and Type Method Description RegionCacheImplementor. 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 classAbstractDomainDataRegionclassAbstractRegionclassDirectAccessRegionTemplateBridge between DirectAccessRegion and StorageAccessclassDomainDataRegionImplclassDomainDataRegionTemplateAbstract implementation ofDomainDataRegionbased on implementations just needing to provide aDomainDataStorageAccessreference for basic caching support - DomainDataStorageAccess acts as a simple wrapper around some generalized cache actions such as put or get.classQueryResultsRegionTemplateclassTimestampsRegionTemplate -
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)
-