queue
queue copied to clipboard
PHP bindings for Tarantool Queue.
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