HBASE-19684 BlockCacheKey toString Performance
Signed-off-by: zhangduo <zhangduo@apache.org>
This commit is contained in:
parent
7378dad5a9
commit
afc2cdbaff
|
@ -68,7 +68,7 @@ public class BlockCacheKey implements HeapSize, java.io.Serializable {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return String.format("%s_%d", hfileName, offset);
|
return this.hfileName + '_' + this.offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static final long FIXED_OVERHEAD = ClassSize.align(
|
public static final long FIXED_OVERHEAD = ClassSize.align(
|
||||||
|
|
Loading…
Reference in New Issue