Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

potentdevelopment's avatar

Need To Do 22K Curl Calls

I need to make 22K+ curl calls. I tried using curl_multi_init() but the results have been inconsistent. I have an array with 22K url's that I need to check for users status. Any suggestions how best to approach this?

0 likes
2 replies
JohnBraun's avatar

That are quite a lot of calls... If you do want to check them, youll have to do that one by one. The best way would be to create a Job that handles this one by one (via a Queue).

Please or to participate in this conversation.