mirror of https://github.com/apache/druid.git
remove references to 'broker'
This commit is contained in:
parent
9179718db5
commit
d5cf7cfdb3
|
@ -26,7 +26,7 @@ import org.junit.Test;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*/
|
*/
|
||||||
public class MapCacheBrokerTest
|
public class MapCacheTest
|
||||||
{
|
{
|
||||||
private static final byte[] HI = "hi".getBytes();
|
private static final byte[] HI = "hi".getBytes();
|
||||||
private static final byte[] HO = "ho".getBytes();
|
private static final byte[] HO = "ho".getBytes();
|
|
@ -17,7 +17,7 @@ import java.util.Map;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
public class MemcachedCacheBrokerBenchmark extends SimpleBenchmark
|
public class MemcachedCacheBenchmark extends SimpleBenchmark
|
||||||
{
|
{
|
||||||
private static final String BASE_KEY = "test_2012-11-26T00:00:00.000Z_2012-11-27T00:00:00.000Z_2012-11-27T04:11:25.979Z_";
|
private static final String BASE_KEY = "test_2012-11-26T00:00:00.000Z_2012-11-27T00:00:00.000Z_2012-11-27T04:11:25.979Z_";
|
||||||
public static final String NAMESPACE = "default";
|
public static final String NAMESPACE = "default";
|
||||||
|
@ -114,6 +114,6 @@ public class MemcachedCacheBrokerBenchmark extends SimpleBenchmark
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void main(String[] args) throws Exception {
|
public static void main(String[] args) throws Exception {
|
||||||
Runner.main(MemcachedCacheBrokerBenchmark.class, args);
|
Runner.main(MemcachedCacheBenchmark.class, args);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -50,7 +50,7 @@ import java.util.concurrent.TimeoutException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*/
|
*/
|
||||||
public class MemcachedCacheBrokerTest
|
public class MemcachedCacheTest
|
||||||
{
|
{
|
||||||
private static final byte[] HI = "hi".getBytes();
|
private static final byte[] HI = "hi".getBytes();
|
||||||
private static final byte[] HO = "ho".getBytes();
|
private static final byte[] HO = "ho".getBytes();
|
Loading…
Reference in New Issue