Uses of Interface
org.hibernate.cache.spi.QueryResultsCache
-
Packages that use QueryResultsCache Package Description org.hibernate.cache.internal Internal implementations and support for second-level caching.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.sql.results.caching.internal -
-
Uses of QueryResultsCache in org.hibernate.cache.internal
Classes in org.hibernate.cache.internal that implement QueryResultsCache Modifier and Type Class Description class
QueryResultsCacheImpl
The standard implementation of the Hibernate QueryCache interface.Methods in org.hibernate.cache.internal that return QueryResultsCache Modifier and Type Method Description QueryResultsCache
DisabledCaching. getDefaultQueryResultsCache()
QueryResultsCache
EnabledCaching. getDefaultQueryResultsCache()
QueryResultsCache
DisabledCaching. getQueryResultsCache(String regionName)
QueryResultsCache
EnabledCaching. getQueryResultsCache(String regionName)
QueryResultsCache
DisabledCaching. getQueryResultsCacheStrictly(String regionName)
QueryResultsCache
EnabledCaching. getQueryResultsCacheStrictly(String regionName)
protected QueryResultsCache
EnabledCaching. makeQueryResultsRegionAccess(String regionName)
-
Uses of QueryResultsCache in org.hibernate.cache.spi
Methods in org.hibernate.cache.spi that return QueryResultsCache Modifier and Type Method Description QueryResultsCache
CacheImplementor. getDefaultQueryResultsCache()
Access to the "default" region used to store query results when caching was requested but no region was explicitly named.QueryResultsCache
CacheImplementor. getQueryResultsCache(String regionName)
Get query cache byregion name
or create a new one if none exist.QueryResultsCache
CacheImplementor. getQueryResultsCacheStrictly(String regionName)
Get the named QueryResultRegionAccess but not creating one if it does not already exist. -
Uses of QueryResultsCache in org.hibernate.sql.results.caching.internal
Constructors in org.hibernate.sql.results.caching.internal with parameters of type QueryResultsCache Constructor Description QueryCachePutManagerEnabledImpl(QueryResultsCache queryCache, StatisticsImplementor statistics, QueryKey queryKey, String queryIdentifier, CachedJdbcValuesMetadata metadataForCache)
-