Package com.sleepycat.je.evictor.TargetSelector

Examples of com.sleepycat.je.evictor.TargetSelector.SetupInfo


         * batch. This is done under the TargetSelector mutex. TODO:
         * special eviction is done serially. We may want to absolve
         * application threads of that responsibility, to avoid blocking, and
         * only have evictor threads do special eviction.
         */
        SetupInfo setupInfo = selector.startBatch(true /* doSpecialEviction */);
        long evictBytes = setupInfo.specialEvictionBytes;
        int maxINsPerBatch = setupInfo.maxINsPerBatch;
        if (maxINsPerBatch == 0) {
            return evictBytes; // The INList(s) are empty.
        }
View Full Code Here

TOP

Related Classes of com.sleepycat.je.evictor.TargetSelector.SetupInfo

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.