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 "caching back ends" to be plugged in as
a caching provider.
|
org.hibernate.engine.spi |
Modifier and Type | Class and Description |
---|---|
class |
QueryResultsCacheImpl
The standard implementation of the Hibernate QueryCache interface.
|
Modifier and Type | Interface and Description |
---|---|
interface |
QueryResultsCache
Defines the responsibility for managing query result data caching
in regards to a specific region.
|
Modifier and Type | Method and Description |
---|---|
default QueryCache |
CacheImplementor.getDefaultQueryCache()
Deprecated.
Use
CacheImplementor.getDefaultQueryResultsCache() instead. |
default QueryCache |
CacheImplementor.getQueryCache()
Deprecated.
Use
CacheImplementor.getDefaultQueryResultsCache() instead. |
default QueryCache |
CacheImplementor.getQueryCache(String regionName)
Deprecated.
Use
CacheImplementor.getQueryResultsCache(String) instead, but using unqualified name |
Modifier and Type | Method and Description |
---|---|
default QueryCache |
CacheImplementor.getDefaultQueryCache()
Deprecated.
Use
CacheImplementor.getDefaultQueryResultsCache() instead. |
default QueryCache |
CacheImplementor.getQueryCache()
Deprecated.
Use
CacheImplementor.getDefaultQueryResultsCache() instead. |
default QueryCache |
CacheImplementor.getQueryCache(String regionName)
Deprecated.
Use
CacheImplementor.getQueryResultsCache(String) instead, but using unqualified name |
Copyright © 2019 JBoss by Red Hat. All rights reserved.