FileDocCategorySizeDatePackage
HashtableCacheProvider.javaAPI DocHibernate 3.2.5986Sat Feb 12 00:19:50 GMT 2005org.hibernate.cache

HashtableCacheProvider

public class HashtableCacheProvider extends Object implements CacheProvider
A simple in-memory Hashtable-based cache impl.
author
Gavin King

Fields Summary
Constructors Summary
Methods Summary
public CachebuildCache(java.lang.String regionName, java.util.Properties properties)

		return new HashtableCache( regionName );
	
public booleanisMinimalPutsEnabledByDefault()

		return false;
	
public longnextTimestamp()

		return Timestamper.next();
	
public voidstart(java.util.Properties properties)
Callback to perform any necessary initialization of the underlying cache implementation during SessionFactory construction.

param
properties current configuration settings.

	
public voidstop()
Callback to perform any necessary cleanup of the underlying cache implementation during SessionFactory.close().