조인기능 최적화
This commit is contained in:
@@ -234,7 +234,10 @@ export class EntityJoinController {
|
||||
caches: cacheInfo,
|
||||
summary: {
|
||||
totalCaches: cacheInfo.length,
|
||||
totalSize: cacheInfo.reduce((sum, cache) => sum + cache.size, 0),
|
||||
totalSize: cacheInfo.reduce(
|
||||
(sum, cache) => sum + cache.dataSize,
|
||||
0
|
||||
),
|
||||
averageHitRate:
|
||||
cacheInfo.length > 0
|
||||
? cacheInfo.reduce((sum, cache) => sum + cache.hitRate, 0) /
|
||||
|
||||
Reference in New Issue
Block a user