역할별 PostgreSQL pool 상한과 동일 process 공유 pool을 적용하고 health 지표를 노출한다.\n\n게임 기능 advisory lock을 schema namespace로 통일하고 실제 PostgreSQL 통합 하네스를 보강한다.
13 lines
586 B
TypeScript
13 lines
586 B
TypeScript
export * from './postgres.js';
|
|
export { createGamePostgresConnector, GamePrisma } from './gamePrisma.js';
|
|
export type { GamePrismaClient } from './gamePrisma.js';
|
|
export { createGatewayPostgresConnector, GatewayPrisma } from './gatewayPrisma.js';
|
|
export type { GatewayPrismaClient } from './gatewayPrisma.js';
|
|
export * from './db.js';
|
|
export * from './redis.js';
|
|
export * from './turnEngineDb.js';
|
|
export * from './readModelChangeJournal.js';
|
|
export * from './readModelOutboxDispatcher.js';
|
|
export * from './readModelCoverageActivation.js';
|
|
export * from './gameSchemaAdvisoryLock.js';
|