@voicenter-team/mysql-dynamic-cluster
Version:
Galera cluster with implementation of dynamic choose mysql server for queries, caching, hashing it and metrics
14 lines (13 loc) • 324 B
TypeScript
export interface IClusterHashingSettings {
nextCheckTime?: number;
dbName?: string;
}
export interface IDefaultClusterHashingSettings extends IClusterHashingSettings {
nextCheckTime: number;
dbName: string;
}
export interface ISQLLocations {
tables: string;
routines: string;
metadata: string;
}