# herosphp-redis-queue **Repository Path**: blackfox/herosphp-redis-queue ## Basic Information - **Project Name**: herosphp-redis-queue - **Description**: Redis-Queue adapter herosphp Framework - **Primary Language**: PHP - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-09-13 - **Last Updated**: 2022-09-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # herosphp/redis-queue redis-queue ## install ```shell composer install herosphp/redis-queue ``` ## usage ### publish queue.config.php ```shell composer vendor:publish "herosphp/redis-queue" ``` ### config/process.config.php ```php return [ 'redis-queue' => [ 'enable' => true, 'handler' => Consumer::class, 'count' => 1, 'constructor' => [ 'consumer_dir' => APP_PATH.'queue', ], ], ]; ``` ### app/queue/DemoQueue.php ```php