revert memory page size back

This commit is contained in:
Maxim.Mossienko
2014-04-30 19:27:24 +02:00
parent 3ac7f7df2c
commit dafd2d379d
@@ -73,7 +73,7 @@ class IntToIntBtree {
FileUtil.delete(file);
}
storage = new ResizeableMappedFile(file, pageSize, storageLockContext, pageSize, true, IOUtil.ourByteBuffersUseNativeByteOrder);
storage = new ResizeableMappedFile(file, pageSize, storageLockContext, 1024 * 1024, true, IOUtil.ourByteBuffersUseNativeByteOrder);
root = new BtreeIndexNodeView(this);
if (initial) {