This document discusses using queues to improve performance and scalability in PHP applications. It notes that queues allow asynchronous and distributed processing of tasks rather than handling everything synchronously. It recommends loosening coupling between application components and using queues to process background jobs like data processing, analysis and caching. The document discusses using Zend Server's job queue to schedule and run jobs in the background. It provides examples of class structures and execution flows for implementing a job queue in a PHP application using Zend Server.