Uses of Interface
org.hibernate.cache.spi.Region
Packages that use Region
Package
Description
Defines the integration aspect of Hibernate's second-level caching, allowing
a "caching backend" to be plugged in as a cache provider.
This package provides a framework intended to reduce the work needed to implement
a caching provider.
An SPI for services which collect, report, or monitor diagnostic events.
-
Uses of Region in org.hibernate.cache.spi
Subinterfaces of Region in org.hibernate.cache.spiModifier and TypeInterfaceDescriptioninterface
SpecializedRegion
whose data is accessed directly, without the need for key/item wrapping.interface
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
Defines the contract for a cache region that stores query results.interface
Defines the contract for a cache region that stores timestamps.Methods in org.hibernate.cache.spi that return Region -
Uses of Region in org.hibernate.cache.spi.support
Classes in org.hibernate.cache.spi.support that implement RegionModifier and TypeClassDescriptionclass
class
class
Bridge between DirectAccessRegion and StorageAccessclass
class
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
class
-
Uses of Region in org.hibernate.event.monitor.spi
Methods in org.hibernate.event.monitor.spi with parameters of type RegionModifier and TypeMethodDescriptionvoid
EventMonitor.completeCacheGetEvent
(DiagnosticEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, boolean hit) void
EventMonitor.completeCacheGetEvent
(DiagnosticEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, CollectionPersister persister, boolean hit) void
EventMonitor.completeCacheGetEvent
(DiagnosticEvent cacheGetEvent, SharedSessionContractImplementor session, Region region, EntityPersister persister, boolean isNaturalKey, boolean hit) void
EventMonitor.completeCachePutEvent
(DiagnosticEvent cachePutEvent, SharedSessionContractImplementor session, Region region, boolean cacheContentChanged, EventMonitor.CacheActionDescription description)