Package voldemort.performance.benchmark.generator

Examples of voldemort.performance.benchmark.generator.SkewedLatestGenerator


            int expectedNewKeys = (int) (opCount * writeProportion * 2.0);
            keyGenerator = new ScrambledZipfianGenerator(recordCount + expectedNewKeys);

        } else if(recordSelection.compareTo(Benchmark.LATEST_RECORD_SELECTION) == 0) {

            keyGenerator = new SkewedLatestGenerator(insertKeySequence);

        } else if(recordSelection.compareTo(Benchmark.FILE_RECORD_SELECTION) == 0) {

            keyGenerator = new FileIntegerGenerator(0, keysFromFile);

View Full Code Here

TOP

Related Classes of voldemort.performance.benchmark.generator.SkewedLatestGenerator

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.