Reduced number of passes.
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/f5c2d344 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/f5c2d344 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/f5c2d344 Branch: refs/heads/0.1.5 Commit: f5c2d344c31304f8a278a300b7b83895ade62029 Parents: 3f5e428 Author: Aaron McCurry <[email protected]> Authored: Tue Apr 30 22:43:52 2013 -0400 Committer: Aaron McCurry <[email protected]> Committed: Tue Apr 30 22:43:52 2013 -0400 ---------------------------------------------------------------------- .../blur/store/blockcache/BlockCacheTest.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/f5c2d344/src/blur-store/src/test/java/org/apache/blur/store/blockcache/BlockCacheTest.java ---------------------------------------------------------------------- diff --git a/src/blur-store/src/test/java/org/apache/blur/store/blockcache/BlockCacheTest.java b/src/blur-store/src/test/java/org/apache/blur/store/blockcache/BlockCacheTest.java index 4665497..b1d9d12 100644 --- a/src/blur-store/src/test/java/org/apache/blur/store/blockcache/BlockCacheTest.java +++ b/src/blur-store/src/test/java/org/apache/blur/store/blockcache/BlockCacheTest.java @@ -76,7 +76,7 @@ public class BlockCacheTest { AtomicLong missesInCache = new AtomicLong(); long storeTime = 0; long fetchTime = 0; - int passes = 1000000; + int passes = 10000; BlockCacheKey blockCacheKey = new BlockCacheKey();
