Package org.hibernate.cache.spi
Interface DirectAccessRegion
- All Superinterfaces:
Region
- All Known Subinterfaces:
QueryResultsRegion
,TimestampsRegion
- All Known Implementing Classes:
DirectAccessRegionTemplate
,QueryResultsRegionTemplate
,TimestampsRegionTemplate
Specialized
Region
whose data is accessed directly,
without the need for key/item wrapping.
Does not define a "remove" operation because Hibernate's
query and timestamps caches only ever "get" and "put".-
Method Summary
Modifier and TypeMethodDescriptiongetFromCache
(Object key, SharedSessionContractImplementor session) Get value by keyvoid
putIntoCache
(Object key, Object value, SharedSessionContractImplementor session) Put a value by keyMethods inherited from interface org.hibernate.cache.spi.Region
clear, destroy, getName, getRegionFactory
-
Method Details