List of usage examples for org.apache.commons.jcs.engine CompositeCacheAttributes setUseLateral
@Override public void setUseLateral(boolean b)
From source file:org.mkosem.impl.JCSCache.java
public JCSCache(int capacity, int concurrencyLevel) throws CacheException { JCS.setConfigProperties(new Properties()); CompositeCacheAttributes attributes = new CompositeCacheAttributes(); attributes.setMaxObjects(capacity);//from www . j a va 2 s. co m attributes.setUseDisk(false); attributes.setUseRemote(false); attributes.setUseLateral(false); cache_ = JCS.getInstance("test", attributes); }