Package net.sf.joafip.heapfile.service

Examples of net.sf.joafip.heapfile.service.AutoSaveHeapFileDataManager


      final Comparator<? super K> comparator) throws HeapException {
    super();
    if (autoSaveMaxRecord == null) {
      heapDataManager = new HeapFileDataManager(setup, true/* manageNodeindex */);
    } else {
      heapDataManager = new AutoSaveHeapFileDataManager(setup,
          true/* manageNodeindex */, autoSaveMaxRecord.intValue());
    }
    keyManager = new FileTreeMapKeyMgr(comparator);
    heapDataManager.setDataRecordKeyManager(keyManager);
    this.comparator = comparator;
View Full Code Here


        false/* deleteRenaming */, false/* clearResizeFile */,
        1/* maxFileOperationRetry */, 0/* fileOperationRetryMsDelay */,
        null/* openFileTraceFile */);
    setup.cacheSetup(1024/* pageSize */, 1024/* maxPage */);
    setup.fileBufferSetup(8 * 1024/* maxBufferSize */, 32/* maxNumberOfBuffer */);
    heapDataManagerForSet = new AutoSaveHeapFileDataManager(setup, false,
        MAX_RECORDS);
  }
View Full Code Here

        false/* deleteRenaming */, false/* clearResizeFile */,
        1/* maxFileOperationRetry */, 0/* fileOperationRetryMsDelay */,
        null/* openFileTraceFile */);
    setup.cacheSetup(1024/* pageSize */, 1024/* maxPage */);
    setup.fileBufferSetup(8 * 1024/* maxBufferSize */, 32/* maxNumberOfBuffer */);
    heapDataManagerForSet = new AutoSaveHeapFileDataManager(setup, false,
        MAX_RECORDS);
    minusOne = longToBinary(-1);
  }
View Full Code Here

TOP

Related Classes of net.sf.joafip.heapfile.service.AutoSaveHeapFileDataManager

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.