Package com.facebook.stats.topk

Examples of com.facebook.stats.topk.HashBasedTopK


public class TestHashBasedTopK extends TestIntegerTopK {
  private static final Logger LOG = LoggerImpl.getLogger(TestHashBasedTopK.class);

  protected TopK<Integer> getInstance(int keySpaceSize, int k) {
    return new HashBasedTopK(k);
  }
View Full Code Here


public class TestHashBasedTopK extends TestIntegerTopK {
  private static final Logger LOG = LoggerFactory.getLogger(TestHashBasedTopK.class);

  protected TopK<Integer> getInstance(int keySpaceSize, int k) {
    return new HashBasedTopK(k);
  }
View Full Code Here

TOP

Related Classes of com.facebook.stats.topk.HashBasedTopK

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.