queue icon indicating copy to clipboard operation
queue copied to clipboard

PHP bindings for Tarantool Queue.

Results 3 queue issues
Sort by recently updated
recently updated
newest added

Fix bug https://github.com/tarantool-php/queue/issues/21#issue-1416098977

Create a queue ```lua queue = require 'queue' queue.create_tube('test', 'limfifottl', {capacity = 1}) ``` Next add records: ```php $queue = new Queue($client, 'test'); $result = $queue->put(45); var_dump($result); $result = $queue->put(45);...

As a part of https://github.com/tarantool/doc/issues/3501, we need to start recommending our users to utilize tt instead of the tarantoolctl utility. The README file mentions tarantoolctl in this section: https://github.com/tarantool-php/queue#before-start