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
In the current time database works with only one connection in the own thread.
This is very slow because node work wtih multiple threads and each thread try read or write some data into database.
So in result all threads push into queue of the database worker.
We need to create a one db connection for each work thread.
The text was updated successfully, but these errors were encountered:
In the current time database works with only one connection in the own thread.
This is very slow because node work wtih multiple threads and each thread try read or write some data into database.
So in result all threads push into queue of the database worker.
We need to create a one db connection for each work thread.
The text was updated successfully, but these errors were encountered: