pecl-networking-gearman icon indicating copy to clipboard operation
pecl-networking-gearman copied to clipboard

PHP wrapper to libgearman

Results 12 pecl-networking-gearman issues
Sort by recently updated
recently updated
newest added

This trivial merge request fixes a misspelling or typo in the README.

Could you explain please, what happened ``` libgearman/packet.cc:253 Assertion "packet->universal" failed for function "gearman_packet_free" likely for "Packet that is being freed has not been allocated, most likely this is do...

The master branch contains the fix https://github.com/php/pecl-networking-gearman/commit/7da13e4babc17067b2b45d6b37041c3c8ed91637 Without that patch, we can't use this extension on PHP 8.1, since we have this issue: ``` Warning: PHP Startup: Unable to load...

Fix method name typo, from 'dolow' to 'doLow'. Fix mixed type, mixed types cannot be nullable, 'null' is already part of the mixed type.

The ZVAL_NEW_ARR() macro has been removed as of PHP 8.1. It is advised to use array_init() or ZVAL_ARR with zend_new_array() instead. Refer link to internal API changes: https://github.com/php/php-src/blob/PHP-8.1/UPGRADING.INTERNALS

I have looked everywhere (even tried reading the C source but that didn't help) but I can't find the answer to that. When will GearmanWorker::work be false? What can/will cause...

Hello, In the previous repository, there was an issue around `addServer` making connections for `\GearmanClient` which was resolved with a new 3rd parameter. (See https://github.com/wcgallego/pecl-gearman/issues/59) Is there any plan to...

See https://github.com/wcgallego/pecl-gearman/pull/72 for a patch. Any thoughts? I could rebase and submit a PR....

I started a post on gearmand about order of tasks being reverse to which they were added. I see no note on the PHP docs that its LIFO instead of...

Fixes #7 Added to `GearmanWorker` the same as added to `GearmanClient` in https://github.com/wcgallego/pecl-gearman/commit/d948be1a937b1ebbfd5ad5ab84214398ec4ad777. `$setupExceptionHandler` param to `addServer`/`addServers` and `enableExceptionHandler` method.