PHPackages                             haoa/mix-redis - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. haoa/mix-redis

ActiveLibrary

haoa/mix-redis
==============

Coroutine redis library based on Swoole, built-in connection pool

v1.0.1(1mo ago)03↓100%1Apache-2.0PHPPHP &gt;=7.2.0

Since Mar 10Pushed 1mo agoCompare

[ Source](https://github.com/hao-php/mix-redis)[ Packagist](https://packagist.org/packages/haoa/mix-redis)[ RSS](/packages/haoa-mix-redis/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (3)Used By (1)

> OpenMix 出品：[https://openmix.org](https://openmix.org/mix-php)

Mix Redis
=========

[](#mix-redis)

PHP Redis for use in multiple execution environments, with support for FPM, CLI, Swoole, WorkerMan, and optional connection pool (coroutine)

可在各种环境中使用的 PHP Redis，支持 FPM、CLI、Swoole、WorkerMan，可选的连接池 (协程)

Installation
------------

[](#installation)

```
composer require haoa/mix-redis

```

Quick start
-----------

[](#quick-start)

注意：[协程环境中，不可在并发请求中使用单例](https://openmix.org/mix-php/docs/3.0/#/zh-cn/instructions?id=%e5%8d%8f%e7%a8%8b%e5%8d%95%e4%be%8b%e5%ae%9e%e4%be%8b%e5%8c%96)

```
$rds = new Haoa\MixRedis\Redis('127.0.0.1', 6379, 'password', 0);

$rds->set('foo', 'bar');
$value = $rds->get('foo');
```

Start Pool
----------

[](#start-pool)

在 `Swoole` 协程环境中，启动连接池

```
$maxOpen = 50;        // 最大开启连接数
$maxIdle = 20;        // 最大闲置连接数
$maxLifetime = 3600;  // 连接的最长生命周期
$waitTimeout = 0.0;   // 从池获取连接等待的时间, 0为一直等待
$rds->startPool($maxOpen, $maxIdle, $maxLifetime, $waitTimeout);
Swoole\Runtime::enableCoroutine(); // 必须放到最后，防止触发协程调度导致异常
```

连接池统计

```
$rds->poolStats(); // array, fields: total, idle, active
```

Transaction Multi &amp; Pipeline
--------------------------------

[](#transaction-multi--pipeline)

Multi

事务块内的多条命令会按照先后顺序被放进一个队列当中，最后由exec命令原子性(atomic)地执行。

```
$tx = $rds->multi();
$tx->set('foo', 'bar');
$tx->set('foo1', 'bar1');
$ret = $tx->exec();
```

Pipeline

客户端将执行的命令写入到缓冲中，最后由exec命令一次性发送给redis执行返回。

```
$tx = $rds->pipeline();
$tx->set('foo', 'bar');
$tx->set('foo1', 'bar1');
$ret = $tx->exec();
```

Transaction Watch
-----------------

[](#transaction-watch)

监听值的变化，如果执行时有变化则事务失败，无变化则事务成功。

```
$tx = $rds->watch('foo');
$tx->incr('foo');
$ret = $tx->exec();
```

Logger
------

[](#logger)

日志记录器，配置后可打印全部SQL信息

```
$db->setLogger($logger);
```

`$logger` 需实现 `Haoa\MixRedis\LoggerInterface`

```
interface LoggerInterface
{
    public function trace(float $time, string $cmd, array $args, ?\Throwable $exception): void;
}
```

License
-------

[](#license)

Apache License Version 2.0,

###  Health Score

35

—

LowBetter than 79% of packages

Maintenance94

Actively maintained with recent releases

Popularity4

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity29

Early-stage or recently created project

 Bus Factor1

Top contributor holds 92.2% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

2

Last Release

59d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d9c6e64f75429e403035961db773ff01114bf50ef31d4d6b79f4ac668bdeb934?d=identicon)[quhao](/maintainers/quhao)

---

Top Contributors

[![onanying](https://avatars.githubusercontent.com/u/16074765?v=4)](https://github.com/onanying "onanying (59 commits)")[![quhaowk](https://avatars.githubusercontent.com/u/42995157?v=4)](https://github.com/quhaowk "quhaowk (4 commits)")[![bbuugg](https://avatars.githubusercontent.com/u/64066545?v=4)](https://github.com/bbuugg "bbuugg (1 commits)")

### Embed Badge

![Health badge](/badges/haoa-mix-redis/health.svg)

```
[![Health](https://phpackages.com/badges/haoa-mix-redis/health.svg)](https://phpackages.com/packages/haoa-mix-redis)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
