01-22-2020 05:23 PM
Do you have a recommendation on which way to lock the client? Lock file vs. HTTP? Does the file way still send a request to the server?
01-23-2020 07:53 AM
I would highly recommend using the file. It will always work regardless of your current connection to a server. If you go the HTTP route the lock could potentially fail if the network is temporarily down and then when it comes back online the system would start processing jobs. In addition, creating and deleting a file is MUCH faster than an HTTP request, so it will have less of an impact on your tests.