Download the PHP package dmasior/querabilis without Composer
On this page you can find all versions of the php package dmasior/querabilis. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package querabilis
Simple PHP Queue
Compliant with JAVA Queue interface
Installation
Usage
Driver
Push to queue
Pull form queue
Currently supported drivers
- Amazon SQS
- Redis (Predis)
- AMQP
- Beanstalkd
- Filesystem
- In memory
Each driver implements Queue interface.
Summary of Queue interface
Insert
add(e)
- inserts an element if possible, otherwise throwing exceptionoffer(e)
- inserts an element if possible, otherwise returning false
Remove
remove()
- remove and return head of queue, otherwise throwing exceptionpoll()
- remove and return head of queue, otherwise returning null
Examine
element()
- return but do not remove head of queue, otherwise throwing exceptionpeek()
- return but do not remove head of queue, otherwise returning null
More examples
Redis (Predis) driver
AWS SQS driver
In memory driver
Beanstalkd driver
AMQP driver
All versions of querabilis with dependencies
PHP Build Version
Package Version
The package dmasior/querabilis contains the following files
Loading the files please wait ....