Package com.clearspring.analytics.stream.membership.KeyGenerator

Examples of com.clearspring.analytics.stream.membership.KeyGenerator.RandomStringGenerator


        assertEquals(125085, serialize(f).length);

        assertEquals(10000064, (f = new BloomFilter(1000000, 0.01)).buckets());
        assertEquals(1250085, serialize(f).length);

        for (String s : new RandomStringGenerator(new Random().nextInt(), 1000000)) {
            f.add(s);
        }
        assertEquals(10000064, f.buckets());
        assertEquals(1250085, serialize(f).length);
View Full Code Here

TOP

Related Classes of com.clearspring.analytics.stream.membership.KeyGenerator.RandomStringGenerator

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.