Development FAQ (2)

Multiple programs call a DLL under a path at the same time, and you need to confirm whether there will be a shared memory problem.
For example: running a process EXE at the same time, and call the DLL under the same path to generate a report at the same time, if the report conversion is performed at the same time, the report may collude with each other.
This requires careful analysis of the structural design in the DLL that calls the same.
Maybe the usual way is:
1. Specify a different path to call when loading.
2. In the case of resource conditions, it is recommended to separate computers for deployment.

Guess you like

Origin blog.csdn.net/weixin_39597541/article/details/102961636