PHPackages                             quillphp/storage-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. [Caching](/categories/caching)
4. /
5. quillphp/storage-redis

ActiveLibrary[Caching](/categories/caching)

quillphp/storage-redis
======================

Redis storage driver for the Quill PHP framework

00PHPCI passing

Since Apr 6Pushed 4mo agoCompare

[ Source](https://github.com/quillphp/quill-storage-redis)[ Packagist](https://packagist.org/packages/quillphp/storage-redis)[ RSS](/packages/quillphp-storage-redis/feed)WikiDiscussions main Synced 2w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Quill Redis Storage Driver
==========================

[](#quill-redis-storage-driver)

Redis storage driver for the [Quill PHP Framework](https://quillphp.com).

Requirements
------------

[](#requirements)

- PHP 8.3+
- `ext-redis`

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

[](#installation)

```
composer require quillphp/storage-redis
```

Usage
-----

[](#usage)

```
use Quill\Storage\RedisStorage;

$storage = new RedisStorage([
    'host'     => '127.0.0.1',
    'port'     => 6379,
    'database' => 0,
]);

// Write
$storage->set('user:42', $payload);
$storage->set('session:abc', $data, ttl: 3600);

// Read
$value = $storage->get('user:42');
$exists = $storage->has('user:42');

// Delete
$storage->delete('user:42');

// Always close when done
$storage->close();
```

Configuration
-------------

[](#configuration)

OptionTypeDefaultDescription`host``string``'127.0.0.1'`Redis server hostname or IP address.`port``int``6379`Redis server port.`password``string|null``null`Password for Redis `AUTH`. Leave `null` if authentication is disabled.`database``int``0`Redis database index (0–15).`prefix``string|null``null`Optional string prepended to every key. Useful for namespacing in shared Redis instances.`timeout``float``0.0`Connection timeout in seconds. `0.0` means no timeout.`persistent_id``string|null``null`Enables a persistent connection when set. The value acts as a connection identifier, allowing it to be reused across requests.License
-------

[](#license)

MIT

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance51

Moderate activity, may be stable

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity12

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/4742b2ad737c14793d6b0a418e6da90b446153a4d7ba120a1f3c07e2a2951d28?d=identicon)[quillphp](/maintainers/quillphp)

---

Top Contributors

[![fr3on](https://avatars.githubusercontent.com/u/26393383?v=4)](https://github.com/fr3on "fr3on (1 commits)")

---

Tags

apiphpredisstorage

### Embed Badge

![Health badge](/badges/quillphp-storage-redis/health.svg)

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

###  Alternatives

[iazaran/smart-cache

Smart Cache is a caching optimization package designed to enhance the way your Laravel application handles data caching. It intelligently manages large data sets by compressing, chunking, or applying other optimization strategies to keep your application performant and efficient.

21114.2k](/packages/iazaran-smart-cache)[phpfastcache/phpssdb

PHP SSDB Driver for phpFastCache

14736.9k1](/packages/phpfastcache-phpssdb)[ichhabrecht/intcache

Turn uncachable page objects into cacheable links

193.9k](/packages/ichhabrecht-intcache)

PHPackages © 2026

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