I just created a little script that does 10+ queries when I run it, but it takes quite a few seconds to finish. Is there a way to speed this up perhaps?
You could thread your queries... Start 10 queries at once, then get the ten results. Of course it's a little more complex because you need to keep track of your threads then, but that would be the only way to speed it up.