I have a background process that is constantly being inserted into the table in real time. It can be thousands of investments per hour (with several updates). The same table is used by the web application to obtain some of the data necessary for display to the user.
Currently, when the background process launches its inserts / updates, the web application seems to be blocked and cannot access the database.
I am wondering what a good solution could be. Should I create another table into which I paste and copy the table into another read-only table? Is there another way?
Any help and suggestions are welcome!
source
share