I've seen quite some topics about this issue, but nothing is really useful to me so forgive me for starting yet another topic about this.
My website runs about 20 cURL cycles in order to get build up. I like cURL because you can hide content away but crawlers can see it. I had a problem with using includes so I had to use cURL as the replacement. Each time cURL gets loaded with an URL with parameters. All URL's are linking to local php files.
At average the website requires four seconds to load.
Is there a way to speed this up?

curlandincluderun server-side and for a crawler to see something, you need to get it client-side. And you can do that a whole lot more efficient usingincludethan hitting your own server with http requests. – jeroen Jan 22 at 22:24