wp-queue icon indicating copy to clipboard operation
wp-queue copied to clipboard

Job queues for WordPress

Results 6 wp-queue issues
Sort by recently updated
recently updated
newest added

In my project, I'm using the [imposter](https://github.com/TypistTech/imposter-plugin) plugin to avoid any conflicts in my project in case I have a plugin that is using different versions of some packages that...

Specifically when installed via composer, should we (as plugin authors): - change namespace (via [imposter](https://github.com/TypistTech/imposter) / [mozart](https://github.com/coenjacobs/mozart))? - change table names so other plugins won't try to drop my tables?...

Hi! So far I'm really liking the lib, haven't tested it fully just yet, but I'll do that really soon. I've noticed one thing while trying to build a factory...

What do you think about these? ```diff diff --git a/src/WP_Queue/Connections/RedisConnection.php b/src/WP_Queue/Connections/RedisConnection.php index 346a348..28a72de 100644 --- a/src/WP_Queue/Connections/RedisConnection.php +++ b/src/WP_Queue/Connections/RedisConnection.php @@ -16,7 +16,7 @@ class RedisConnection implements ConnectionInterface { * @return bool|int...

Is it possible to create separate queues? I have a plugin that pushes data to a third party api, and also pulls data from that same api. What I had...

I have a problem with this library. Jobs are added to the database but are not performed. Single event is created with name wp_queue_connections_databaseconnection and after few moments it disappears...