Examples of BufferPoolConfiguration


Examples of com.persistit.Configuration.BufferPoolConfiguration

            throw new IllegalArgumentException("No volume named: " + dataVolumeName);
        }

        if(LOG.isDebugEnabled()) {
            int pageSize = dataVolume.getPageSize();
            BufferPoolConfiguration bufferConfig = db.getConfiguration().getBufferPoolMap().get(pageSize);
            LOG.debug("dataPath={} bufferSize={} maxBuffers={} maxMemory={}",
                      new Object[]{
                          dataVolume.getPath(),
                          pageSize,
                          bufferConfig.getMaximumCount(),
                          bufferConfig.getMaximumMemory()
                      });
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.