HBASE-3641 LruBlockCache.CacheStats.getHitCount() is not using the correct variable
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1083986 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9ad69f3bd0
commit
9d93ccc938
|
@ -41,6 +41,8 @@ Release 0.91.0 - Unreleased
|
||||||
HBASE-3665 tighten assertions for testBloomFilterSize
|
HBASE-3665 tighten assertions for testBloomFilterSize
|
||||||
HBASE-3662 REST server does not respect client supplied max versions when
|
HBASE-3662 REST server does not respect client supplied max versions when
|
||||||
creating scanner
|
creating scanner
|
||||||
|
HBASE-3641 LruBlockCache.CacheStats.getHitCount() is not using the
|
||||||
|
correct variable
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)
|
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)
|
||||||
|
|
|
@ -646,7 +646,7 @@ public class LruBlockCache implements BlockCache, HeapSize {
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getHitCount() {
|
public long getHitCount() {
|
||||||
return hitCachingCount.get();
|
return hitCount.get();
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getHitCachingCount() {
|
public long getHitCachingCount() {
|
||||||
|
|
Loading…
Reference in New Issue