From the course: AWS for Developers: SNS, SQS, and SWF

Unlock the full course today

Join today to access over 24,700 courses taught by industry experts.

Receive a message from the queue

Receive a message from the queue

- [Instructor] In example files included with the course, open up the file ParseResumeWorker.php and grab the contents of this file and paste it into a new file on the server. I'm going to use vim to do this, and I'm just going to repeat the same steps that I used in the earlier video. Repeat the same steps and put the ProcessApplication.php and the ParseResume.php file up on the server, as well. Now open up ProcessApplication.php. In our current PHP workflow, this file captures the form data from the new applicant. And the included file ParseResume.php is where our resume parser is slowing down the server. Open up ParseResume.php. Now this file is just a timer to simulate the server doing something when it's parsing a resume uploaded by our applicant. Let's run ProcessApplication.php and simulate what'll happen on the server when a new applicant clicks the submit button and sends us their resume and portfolio. Type…

Contents