File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,8 +10,9 @@ Drivers
1010-------
1111
1212Drivers are the queue backend hidden behind the ``PMG\Queue\Driver `` interface.
13- ``pmg/queue `` comes with two built-in drivers: *memory * and *pheanstalk *
14- (beanstalkd).
13+ The core ``pmg/queue `` library ships with a single built-in driver: *memory *.
14+ PMG also maintains an external *pheanstalk * (beanstalkd) driver in the
15+ ``pmg/queue-pheanstalk `` package.
1516
1617Drivers have methods for enqueuing and dequeueing messages as well as methods
1718for acknowledging that a message is complete, retrying a message, or marking a message
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ decorator.
176176 Forking is useful for memory management, but requires some consideration. For
177177instance, database connections might need to be re-opened in the forked process.
178178In such cases, create the resources on demand. That is why the
179- ``TacticianHandler `` above takes a factory callable by default.
179+ ``CreatingTacticianHandler `` above takes a factory callable by default.
180180
181181In cases where a process fails to fork, a ``PMG\Queue\Exception\CouldNotFork ``
182182exception will be thrown and the consumer will exit with an unsuccessful status
You can’t perform that action at this time.
0 commit comments