queue
queue copied to clipboard
:postbox: Flexible abstraction for working with queues in PHP.
Hello! Please look at https://github.com/queue-interop/queue-interop project. Using interfaces from it allows us reuse some implementations like enqueue, which supports a lot of transports. You can outsource some code
Some of the internals to this library are a bit strange and confusing: - Acknowledgement Handlers, do the actual reading of data from the queue. - The client implements all...
Using someones implementation of an event loop and async streams, create an Asynchronous Client removes the need for acknowledgement handler (a little bit) ```php interface AsyncMessageHandler { public function handle(MessageInterface...
Here's a list of adapters I'd love to see this project support: - [ ] [Apache Kafka](https://kafka.apache.org) - [ ] [AMQP](http://www.amqp.org) (in progress, see #32) - [ ] [beanstalkd](https://kr.github.io/beanstalkd)
This is just a general question regarding the project's view of how queue types should be managed across (or between) various deployment environments. I've noticed that some queue abstraction libraries...
This is just a placeholder for discussion regarding a new AMQP adapter (RabbitMQ, etc). I did some prototyping of a new adapter using the SqsAdapter as a baseline and my...