DEV Community

Discussion on: Perling and Curling

Collapse
 
fgasper profile image
Felipe Gasper

Hi!

The above should all happen within the same process, so I’m not sure where you’re coming from regarding forking.

WWW::Curl::Multi, as far as I can tell, uses curl’s internal select-based event loop exclusively, which won’t be as efficient as platform-native polling methods like epoll or kqueue. It appears to mimic the C API pretty closely, much like Net::Curl::Multi.

Do you mind clarifying what you see as “not so easy” regarding adding more URLs to the request queue?