hrms-api-org/src/utils/log-memory-store.ts

85 lines
2.2 KiB
TypeScript
Raw Normal View History

feat: optimize detailSuperAdmin API to fix database connection issue ปัญหา: API GET /api/v1/org/super-admin/{id} ทำให้ระบบดับเพราะ N+1 queries - เดิม: >1,000,000 queries (100 orgRoots × 10 children × 10 counts/level) - ใหม่: ~10 queries (query รวมครั้งเดียว + 5 org queries) การเปลี่ยนแปลง: 1. สร้าง OrganizationController-optimized.ts - getPositionCounts(): query posMaster ทั้งหมดครั้งเดียว - สร้าง maps (orgRootMap, orgChild1Map, etc.) สำหรับ lookup - ลด queries จาก 1,000,000+ → ~10 queries 2. เพิ่ม import สำหรับ helper functions ใน OrganizationController.ts - import { getPositionCounts, getCounts, getRootCounts } - ต้อง replace ฟังก์ชัน detailSuperAdmin ด้วย optimized version - ดู OPTIMIZED_FUNCTION.ts สำหรับฟังก์ชันใหม่ ไฟล์ที่เพิ่ม: - src/controllers/OrganizationController-optimized.ts (helper functions) - OPTIMIZED_FUNCTION.ts (optimized function reference) - src/utils/log-memory-store.ts (from earlier log middleware fix) หมายเหตุ: ฟังก์ชัน detailSuperAdmin ใน OrganizationController.ts ยังไม่ถูก replace (ต้องทำ manual) - ดู OPTIMIZED_FUNCTION.ts Co-Authored-By: Claude (glm-4.7) <noreply@anthropic.com>
2026-01-28 13:45:52 +07:00
import { AppDataSource } from "../database/data-source";
import { OrgRevision } from "../entities/OrgRevision";
interface LogCacheData {
currentRevision: OrgRevision | null;
updatedAt: Date;
}
class LogMemoryStore {
private cache: LogCacheData = {
currentRevision: null,
updatedAt: new Date(),
};
private readonly REFRESH_INTERVAL = 5 * 60 * 1000; // 5 นาที
private isRefreshing = false;
private isInitialized = false;
private refreshTimer: NodeJS.Timeout | null = null;
constructor() {
// ไม่ refresh ทันที - รอให้เรียก initialize() หลัง TypeORM ready
}
// เริ่มต้น cache หลังจาก TypeORM initialize เสร็จ
initialize() {
if (this.isInitialized) {
console.log("[LogMemoryStore] Already initialized");
return;
}
this.isInitialized = true;
this.refreshCache();
this.refreshTimer = setInterval(() => {
this.refreshCache();
}, this.REFRESH_INTERVAL);
console.log("[LogMemoryStore] Initialized with", this.REFRESH_INTERVAL / 1000, "second refresh interval");
}
private async refreshCache() {
if (this.isRefreshing) {
console.log("[LogMemoryStore] Already refreshing, skipping...");
return;
}
this.isRefreshing = true;
try {
const repoRevision = AppDataSource.getRepository(OrgRevision);
const revision = await repoRevision.findOne({
where: {
orgRevisionIsCurrent: true,
orgRevisionIsDraft: false,
},
});
this.cache.currentRevision = revision;
this.cache.updatedAt = new Date();
console.log(
"[LogMemoryStore] Cache refreshed at",
this.cache.updatedAt.toISOString(),
);
} catch (error) {
console.error("[LogMemoryStore] Error refreshing cache:", error);
} finally {
this.isRefreshing = false;
}
}
getCurrentRevision(): OrgRevision | null {
return this.cache.currentRevision;
}
getLastUpdateTime(): Date {
return this.cache.updatedAt;
}
// สำหรับ shutdown
destroy() {
if (this.refreshTimer) {
clearInterval(this.refreshTimer);
this.refreshTimer = null;
}
}
}
export const logMemoryStore = new LogMemoryStore();