Slide 1

Slide 1 text

I Promise() to Teach you Asynchronous PHP Eric Mann - Tozny - php[tek] 2016

Slide 2

Slide 2 text

Terminology Imperative / Procedural Concurrent Parallel Concurrent Parallel

Slide 3

Slide 3 text

Project Setup

Slide 4

Slide 4 text

Copy the USB drive to your machine Install Vagrant/VirtualBox if you don’t have them Add the eisago Vagrant box: 
 vagrant box add ericmann/eisago eisago.box Start the Vagrant box and SSH into it Set up your IDE for the project

Slide 5

Slide 5 text

Part I: Imperative We’re building an importer - turn a collection of text files into an indexed MongoDB database Let’s work through the 5 TODOs in the application Now, let’s run it!

Slide 6

Slide 6 text

10 minute break

Slide 7

Slide 7 text

Icicle/ReactPHP Write asynchronous (concurrent) code in PHP Support event loops natively (and stop blocking I/O) Use Promises in PHP to juggle multiple tasks at once Requires an event (and signaling) extension for PHP to work properly

Slide 8

Slide 8 text

Icicle/ReactPHP then( $resolve ); } ); $promise ->then( function( $data ) { echo $data; } )->done ( function() { echo 'Done!'; } ); Loop\run();

Slide 9

Slide 9 text

Icicle/ReactPHP then( $resolve ); } ); $promise2 = new Promise( function( $resolve, $reject ) { do_something_else_async()->then( $resolve ); } ); Icicle\Awaitable\all( [ $promise1, $promise2 ] ) ->done( function() { echo 'Done!'; }, function() { echo 'Error!'; } ); Loop\run();

Slide 10

Slide 10 text

Part II: Concurrent Let’s refactor for concurrency Again, there are 5 TODOs in the application Now, let’s run it!

Slide 11

Slide 11 text

10 minute break

Slide 12

Slide 12 text

pthreads User-land multi-threading in PHP by way of an extension Provides threads, workers, and threaded objects All of your code – the server and the worker – are the same application Each component has its own scope

Slide 13

Slide 13 text

pthreads workerId = $id; } public function run() { // Do some heavy processing } }

Slide 14

Slide 14 text

pthreads start(); // Now they'll each run independently } foreach ( range( 0, 5 ) as $id ) {
 // Force the threads to rejoin the main process synchronously $workers[ $id ]->join(); }

Slide 15

Slide 15 text

Part III: Concurrent Parallel Let’s refactor for parallelism (threading) Yet again, there are 5 TODOs in the application
 They’re in 2 different files, though … Now, let’s run it!

Slide 16

Slide 16 text

Questions?

Slide 17

Slide 17 text

I Promise() to Teach you Asynchronous PHP Eric Mann - Tozny - php[tek] 2016