Example usage for org.hibernate.cfg Settings isMinimalPutsEnabled

List of usage examples for org.hibernate.cfg Settings isMinimalPutsEnabled

Introduction

In this page you can find the example usage for org.hibernate.cfg Settings isMinimalPutsEnabled.

Prototype

public boolean isMinimalPutsEnabled() 

Source Link

Usage

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());
}