I have a function that includes a call to CURL. This function takes about 10 seconds to complete running, and is called to run by hitting the page that contains this function.
Now if I were to have another function that calls the function (by hitting/wget the page) above once every second, will the subsequent calls run simultaneously with the previous calls that is still doing its 10 seconds of processing and curling?
curl_multiis not suitable for my situation, as I want to space out the 10 curls by 1 second each and the URL curled will be retrieved from the database, which is updated every second.