I am calling a jar file on my php server via
exec('java -jar /pat/to/file.jar', $output);
But I am wondering if two consecutive requests made to a php function that runs the jar file, can the second request get the jar file? Or will he have to wait because the jar file is already in use?
Thanks in advance.
source share