Package com.persistit.Configuration

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

Related Classes of com.persistit.Configuration.BufferPoolConfiguration

Copyright © 2018 www.massapicom. 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.