zhaokongdong/redis-queue

A simple php queue based on redis

1.1 2018-08-09 04:42 UTC

This package is not auto-updated.

Last update: 2025-06-22 10:12:49 UTC


README

A simple php queue based on redis

1.Used with namespace

The directory structure as below

├── app
│   ├── ClientTest.php
│   ├── Jobs
│   │   └── TestDemo.php
│   └── ServerTest.php
├── composer.json
└── public
    └── index.php

Follow link:

https://github.com/zhaokongdong/demo/tree/master/demo1

2. Used without namespace

The directory structure as below

├── Jobs                                
│   └── TestDemo.php                    
├── composer.json                       
├── dispatch.php  
└── worker.php     

Follow link:

https://github.com/zhaokongdong/demo/tree/master/demo2