feat: integrate RedisNode management into Project and Query services; enhance RedisNodeService with optimal node selection and connection options; update vm.constants to include RedisPlugin

This commit is contained in:
lborv
2025-10-09 19:54:08 +03:00
parent c3189bb2df
commit 174dbbcdba
9 changed files with 97 additions and 12 deletions

View File

@ -24,4 +24,10 @@ export class ProjectService {
database: { id: databaseId },
});
}
updateRedisNode(projectId: string, redisNodeId: { id: string }[]) {
return this.projectRepository.update(projectId, {
redisNodes: redisNodeId,
});
}
}