조인기능 최적화

This commit is contained in:
kjs
2025-09-16 16:53:03 +09:00
parent 6a3a7b915d
commit 1d05965a55
8 changed files with 1082 additions and 201 deletions

View File

@@ -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) /