Package org.hibernate.engine.spi
Interface CacheImplementor
-
- All Known Subinterfaces:
CacheImplementor
@Deprecated public interface CacheImplementor extends Service, Cache, java.io.Serializable
Deprecated.Moved toCacheImplementor
SPI contract for Hibernate's second-level cache engine- Since:
- 4.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description void
close()
Deprecated.Close this "cache", releasing all underlying resources.default void
evictQueries()
Deprecated.Clean up the default query cachejava.util.Set<java.lang.String>
getCacheRegionNames()
Deprecated.The unqualified name of all regions.CollectionDataAccess
getCollectionRegionAccess(NavigableRole collectionRole)
Deprecated.UseEntityPersister.getNaturalIdCacheAccessStrategy()
()} insteaddefault QueryCache
getDefaultQueryCache()
Deprecated.UsegetDefaultQueryResultsCache()
instead.QueryResultsCache
getDefaultQueryResultsCache()
Deprecated.Access to the "default" region used to store query results when caching was requested but no region was explicitly named.EntityDataAccess
getEntityRegionAccess(NavigableRole rootEntityName)
Deprecated.UseEntityPersister.getCacheAccessStrategy()
insteadjava.util.Set<NaturalIdDataAccess>
getNaturalIdAccessesInRegion(java.lang.String legacyQualifiedRegionName)
Deprecated.No replacement - added just for support of the newly deprecated methods expecting a qualified region nameNaturalIdDataAccess
getNaturalIdCacheRegionAccessStrategy(NavigableRole rootEntityName)
Deprecated.UseEntityPersister.getNaturalIdCacheAccessStrategy()
()} insteaddefault QueryCache
getQueryCache()
Deprecated.UsegetDefaultQueryResultsCache()
instead.default QueryCache
getQueryCache(java.lang.String regionName)
Deprecated.UsegetQueryResultsCache(String)
instead, but using unqualified nameQueryResultsCache
getQueryResultsCache(java.lang.String regionName)
Deprecated.Get query cache by region name or create a new one if none exist.QueryResultsCache
getQueryResultsCacheStrictly(java.lang.String regionName)
Deprecated.Get the named QueryResultRegionAccess but not creating one if it does not already exist.Region
getRegion(java.lang.String regionName)
Deprecated.Get a cache Region by namedefault Region
getRegionByLegacyName(java.lang.String legacyName)
Deprecated.No replacement - added just for support of the newly deprecated methods expecting a qualified region nameRegionFactory
getRegionFactory()
Deprecated.The underlying RegionFactory in use.java.lang.String[]
getSecondLevelCacheRegionNames()
Deprecated.(since 5.3) UsegetCacheRegionNames()
insteadSessionFactoryImplementor
getSessionFactory()
Deprecated.Access to the SessionFactory this Cache is bound to.TimestampsCache
getTimestampsCache()
Deprecated.Find the cache data access strategy for Hibernate's timestamps cache.default UpdateTimestampsCache
getUpdateTimestampsCache()
Deprecated.UsegetTimestampsCache()
insteadvoid
prime(java.util.Set<DomainDataRegionConfig> cacheRegionConfigs)
Deprecated.An initialization phase allowing the caching provider to prime itself from the passed configsdefault java.lang.String
unqualifyRegionName(java.lang.String name)
Deprecated.(since 5.3) No replacement - added just to continue some backwards compatibility in supporting the newly deprecated methods expecting a qualified (prefix +) region name-
Methods inherited from interface org.hibernate.Cache
containsCollection, containsEntity, containsEntity, containsQuery, evictAll, evictAllRegions, evictCollection, evictCollectionData, evictCollectionData, evictCollectionData, evictCollectionRegion, evictCollectionRegions, evictDefaultQueryRegion, evictEntity, evictEntity, evictEntityData, evictEntityData, evictEntityData, evictEntityData, evictEntityData, evictEntityRegion, evictEntityRegion, evictEntityRegions, evictNaturalIdData, evictNaturalIdData, evictNaturalIdData, evictNaturalIdRegion, evictNaturalIdRegion, evictNaturalIdRegions, evictQueryRegion, evictQueryRegions, evictRegion
-
-
-
-
Method Detail
-
getSessionFactory
SessionFactoryImplementor getSessionFactory()
Deprecated.Description copied from interface:Cache
Access to the SessionFactory this Cache is bound to.- Specified by:
getSessionFactory
in interfaceCache
- Returns:
- The SessionFactory
-
getRegionFactory
RegionFactory getRegionFactory()
Deprecated.The underlying RegionFactory in use.
-
prime
void prime(java.util.Set<DomainDataRegionConfig> cacheRegionConfigs)
Deprecated.An initialization phase allowing the caching provider to prime itself from the passed configs- Since:
- 5.3
-
getRegion
Region getRegion(java.lang.String regionName)
Deprecated.Get a cache Region by name- Since:
- 5.3
-
getCacheRegionNames
java.util.Set<java.lang.String> getCacheRegionNames()
Deprecated.The unqualified name of all regions. Intended for use withgetRegion(java.lang.String)
- Since:
- 5.3
-
getTimestampsCache
TimestampsCache getTimestampsCache()
Deprecated.Find the cache data access strategy for Hibernate's timestamps cache. Will returnnull
if Hibernate is not configured for query result caching- Since:
- 5.3
-
getDefaultQueryResultsCache
QueryResultsCache getDefaultQueryResultsCache()
Deprecated.Access to the "default" region used to store query results when caching was requested but no region was explicitly named. Will returnnull
if Hibernate is not configured for query result caching
-
getQueryResultsCache
QueryResultsCache getQueryResultsCache(java.lang.String regionName)
Deprecated.Get query cache by region name or create a new one if none exist. If the region name is null, then default query cache region will be returned. Will returnnull
if Hibernate is not configured for query result caching
-
getQueryResultsCacheStrictly
QueryResultsCache getQueryResultsCacheStrictly(java.lang.String regionName)
Deprecated.Get the named QueryResultRegionAccess but not creating one if it does not already exist. This is intended for use by statistics. Will returnnull
if Hibernate is not configured for query result caching or if no such region (yet) exists- Since:
- 5.3
-
evictQueries
default void evictQueries() throws HibernateException
Deprecated.Clean up the default query cache- Throws:
HibernateException
-
close
void close()
Deprecated.Close this "cache", releasing all underlying resources.
-
getSecondLevelCacheRegionNames
@Deprecated java.lang.String[] getSecondLevelCacheRegionNames()
Deprecated.(since 5.3) UsegetCacheRegionNames()
insteadGet the *qualified* names of all regions caching entity and collection data.- Returns:
- All cache region names
-
getEntityRegionAccess
@Deprecated EntityDataAccess getEntityRegionAccess(NavigableRole rootEntityName)
Deprecated.UseEntityPersister.getCacheAccessStrategy()
insteadFind the cache data access strategy for an entity. Will returnnull
when the entity is not configured for caching.- Parameters:
rootEntityName
- The NavigableRole representation of the root entity
-
getNaturalIdCacheRegionAccessStrategy
@Deprecated NaturalIdDataAccess getNaturalIdCacheRegionAccessStrategy(NavigableRole rootEntityName)
Deprecated.UseEntityPersister.getNaturalIdCacheAccessStrategy()
()} insteadFind the cache data access strategy for the given entity's natural-id cache. Will returnnull
when the entity does not define a natural-id, or its natural-id is not configured for caching.- Parameters:
rootEntityName
- The NavigableRole representation of the root entity
-
getCollectionRegionAccess
@Deprecated CollectionDataAccess getCollectionRegionAccess(NavigableRole collectionRole)
Deprecated.UseEntityPersister.getNaturalIdCacheAccessStrategy()
()} insteadFind the cache data access strategy for the given collection. Will returnnull
when the collection is not configured for caching.
-
getUpdateTimestampsCache
@Deprecated default UpdateTimestampsCache getUpdateTimestampsCache()
Deprecated.UsegetTimestampsCache()
insteadGetUpdateTimestampsCache
instance managed by theSessionFactory
.
-
getQueryCache
@Deprecated default QueryCache getQueryCache()
Deprecated.UsegetDefaultQueryResultsCache()
instead.Get the defaultQueryCache
.
-
getDefaultQueryCache
@Deprecated default QueryCache getDefaultQueryCache()
Deprecated.UsegetDefaultQueryResultsCache()
instead.Get the defaultQueryCache
.
-
getQueryCache
@Deprecated default QueryCache getQueryCache(java.lang.String regionName) throws HibernateException
Deprecated.UsegetQueryResultsCache(String)
instead, but using unqualified name- Throws:
HibernateException
-
unqualifyRegionName
@Deprecated default java.lang.String unqualifyRegionName(java.lang.String name)
Deprecated.(since 5.3) No replacement - added just to continue some backwards compatibility in supporting the newly deprecated methods expecting a qualified (prefix +) region name
-
getRegionByLegacyName
@Deprecated default Region getRegionByLegacyName(java.lang.String legacyName)
Deprecated.No replacement - added just for support of the newly deprecated methods expecting a qualified region name
-
getNaturalIdAccessesInRegion
@Deprecated java.util.Set<NaturalIdDataAccess> getNaturalIdAccessesInRegion(java.lang.String legacyQualifiedRegionName)
Deprecated.No replacement - added just for support of the newly deprecated methods expecting a qualified region name
-
-