up vote 0 down vote favorite
share [g+] share [fb]

I am going to have a daemon that will run on a FreeBSD server, which will exchange small amounts of data with a list of URIs every minute.

I am thinking to use the curl_multi functions to run them all at once, or in groups, every minute, using a post. I am open to other ideas though.

I will have to do some benchmarking later on, but for now, does anyone know how resource intensive it is to make many small posts with curl?

Is there a less intensive way to do this? SOAP perhaps? To start, there will only be a few every minute, but it may grow quickly.

Thanks!

link|improve this question

70% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I'd say that SOAP processing (generating query, sending it, get it processed then getting answer back) may be more resource intensive than just a POST, even "multithreaded". Profiling or benchmarking is probably the only way to be sure anyway.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.