org.hibernate.cache

Class NoCacheProvider

Implemented Interfaces:
CacheProvider

public class NoCacheProvider
extends java.lang.Object
implements CacheProvider

Implementation of NoCacheProvider.
Author:
Steve Ebersole

Method Summary

Cache
buildCache(String regionName, Properties properties)
Configure the cache
boolean
isMinimalPutsEnabledByDefault()
long
nextTimestamp()
Generate a timestamp
void
start(Properties properties)
Callback to perform any necessary initialization of the underlying cache implementation during SessionFactory construction.
void
stop()
Callback to perform any necessary cleanup of the underlying cache implementation during SessionFactory.close().

Method Details

buildCache

public Cache buildCache(String regionName,
                        Properties properties)
            throws CacheException
Configure the cache
Specified by:
buildCache in interface CacheProvider
Parameters:
regionName - the name of the cache region
properties - configuration settings
Throws:
CacheException -

isMinimalPutsEnabledByDefault

public boolean isMinimalPutsEnabledByDefault()
Specified by:
isMinimalPutsEnabledByDefault in interface CacheProvider

nextTimestamp

public long nextTimestamp()
Generate a timestamp
Specified by:
nextTimestamp in interface CacheProvider

start

public void start(Properties properties)
            throws CacheException
Callback to perform any necessary initialization of the underlying cache implementation during SessionFactory construction.
Specified by:
start in interface CacheProvider
Parameters:
properties - current configuration settings.

stop

public void stop()
Callback to perform any necessary cleanup of the underlying cache implementation during SessionFactory.close().
Specified by:
stop in interface CacheProvider