‹prev | My Chain | next› I am pretty jazzed about the progress in both the ICE Code Editor and the test suite that is driving much of its development. I really have the sense that I have the beginnings of a robust codebase. I love Dart. One of the things that I do not have is the ability to test headlessly. This is something that worked way back in the day, but stopped at some point due to a b…
I think I'm going to go workout then come back and spend most of the day working on the client. I'm one or two good programming sessions away from having it working. It'll be much easier for people to use than it was before.
Much easier to use.
$client = new Artax\Client;
$response = $client->request('http://www.google.com');
Yes, these do block. The Client::requestMulti retrieves all requests in parallel but it still blocks until the slowest request finishes. I'm going to finish the blocking version first and then write one that can be used with my event reactor in non-blocking event loops.
That's what jQuery does, one of the only things it does right imho. In nodejs you usually get callback based versions, but there exist interesting promise packages like Q
Node has the advantage that the event loop is built-in so you don't have to fiddle with passing around a reactor and starting it manually. It hurts my Inversion of Control sensibilities but I could implement those sorts of functional interfaces seamlessly if I bootstrapped everything with a single global static event loop instance and then referenced it from inside closed scopes.
I don't know if the decrease in testability would allow me to feel comfortable with that, though.
It might hurt you in the future but that's unlikely, do you see a scenario where someone would want to replace the event loop? Or create two event loops?
static $loop = new Loop;
function request($uri) {
global $loop;
// ....
}
Not really -- if you want to use an event loop in PHP you're going to be using a third-party userland implementation and you're best served to have a single instance that you fire up one time and let the application run.