重启服务时自动压缩db

This commit is contained in:
hanhh
2021-09-29 21:40:35 +08:00
parent b179649078
commit c054259806
2 changed files with 11 additions and 2 deletions
+5 -1
View File
@@ -16,11 +16,15 @@ export default class EnvService {
});
}
public getDb(): DataStore {
return this.envDb;
}
public async create(payloads: Env[]): Promise<Env[]> {
const envs = await this.envs();
let position = initEnvPosition;
if (envs && envs.length > 0 && envs[envs.length - 1].position) {
position = envs[envs.length - 1].position;
position = envs[envs.length - 1].position as number;
}
const tabs = payloads.map((x) => {
position = position / 2;