You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.
Currently database objects are simply created at a fixed location and passed on to all the consumers directly. This also creates overlapping of read operations especially in the case when multiple storage managers access the database in the same context (see client/integration.test.ts)
Solution
create a factory pattern for database connections which can be modified according to context
The text was updated successfully, but these errors were encountered:
Problem
Currently database objects are simply created at a fixed location and passed on to all the consumers directly. This also creates overlapping of read operations especially in the case when multiple storage managers access the database in the same context (see
client/integration.test.ts
)Solution
create a factory pattern for database connections which can be modified according to context
The text was updated successfully, but these errors were encountered: