zhaokongdong/redis-queue

A simple php queue based on redis

Installs: 13

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

pkg:composer/zhaokongdong/redis-queue

1.1 2018-08-09 04:42 UTC

This package is not auto-updated.

Last update: 2026-01-04 12:57:54 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