Zend Server User Guide > Tasks > Working with Jobs > Creating a Job

Creating a Job

The Zend Server Job Queue component provides the ability to off-load script execution using JobsJobs contain information about a specific Job (script to run) that you have set to run in your environment.. A Job is in essence a command to execute a PHP script according to the specific parameters you give it. The Job QueueA simple and manageable system for off-loading tasks from the synchronous user request, to an external, parallel PHP process. component manages the timing and execution of jobs in the system.

Jobs can be created to facilitate a wide range of situations that require you to asynchronously run PHP code. Here are a few examples:

 

Read Also

  Job Queue    
  Working with Jobs