PHP Package: yiisoft/yii2-queue

Yii2 Queue is a powerful PHP library for handling asynchronous tasks and job queues efficiently with high performance.

Current Version: 2.0.2
Last Updated: 2017-12-26
PHP Requirement: >=5.5.0
Dependencies:
yiisoft/yii2
yiisoft/yii2-redis
yiisoft/yii2-db
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Yii2 Queue is a feature-rich PHP library that simplifies the process of handling queues and asynchronous tasks in web applications. It provides robust solutions for managing tasks efficiently, ensuring high performance and scalability. With Yii2 Queue, developers can streamline their workflow, improve application responsiveness, and enhance user experience.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 2.0.2

Download Download v2.0.2

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/yiisoft/yii2-queue/2.0.2/loader.php';
require_once 'libs/yiisoft/yii2/2.0.52/loader.php';
require_once 'libs/yiisoft/yii2-redis/{lib_version}/loader.php';
require_once 'libs/yiisoft/yii2-db/{lib_version}/loader.php';

use yiisoft\yii2\queue\Queue;
use yiisoft\yii2\queue\Job;

$obj = new Queue();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.