miraclemaker
Programmer
I'm using cURL to post data to a server, I retrieve the result of the post using CURLOPT_RETURNTRANSFER. Part of my project requires that I POST quite a large number of transactions to the same server using cURL. Is there a way I can send all the transactions across the same server connection and still retrieve the result, rather than having to open a new transaction each time?
Opening a connection can be quite time consuming and I'm concerned that if this has to be done a lot on one page it could result in page timeouts.
Opening a connection can be quite time consuming and I'm concerned that if this has to be done a lot on one page it could result in page timeouts.