Package xbird.util.concurrent.lock

Examples of xbird.util.concurrent.lock.NoopLock


            throws IOException, InterruptedException, ServiceException {
        String filename = FileUtils.basename(inputFile);

        System.gc();

        runBenchmarkWithZipfDistribution1(new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.NbGClock, pageSize, distribution);
    }
View Full Code Here


            throws IOException, InterruptedException, ServiceException {
        String filename = FileUtils.basename(inputFile);

        System.gc();

        runBenchmarkWithZipfDistribution1(new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.BpLRU, pageSize, distribution);
    }
View Full Code Here

            throws IOException, InterruptedException, ServiceException {
        String filename = FileUtils.basename(inputFile);

        System.gc();

        runBenchmarkWithZipfDistribution1(new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.BpFullTwoQueue, pageSize, distribution);
    }
View Full Code Here

        long[][] dist = readDistribution(file, threads, round);

        System.gc();

        // GClock       
        runBenchmarkWithZipfDistribution1(false, new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.NbGClock, pageSize, dist);
    }
View Full Code Here

        long[][] dist = readDistribution(file, threads, round);

        System.gc();

        // GClock       
        runBenchmarkWithZipfDistribution1(false, new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.NbGClockK, pageSize, dist);
    }
View Full Code Here

TOP

Related Classes of xbird.util.concurrent.lock.NoopLock

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.