List of usage examples for org.hibernate.cfg Settings isMinimalPutsEnabled
public boolean isMinimalPutsEnabled()
From source file:com.googlecode.hibernate.memcached.strategy.AbstractMemcachedRegionAccessStrategy.java
License:Apache License
@Override public boolean putFromLoad(Object key, Object value, long txTimestamp, Object version) throws CacheException { Settings settings = getRegion().getSettings().getHibernateSettings(); return putFromLoad(key, value, txTimestamp, version, settings.isMinimalPutsEnabled()); }