PHPackages                             b3n/typo3-predis-cache - 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. b3n/typo3-predis-cache

AbandonedArchivedTypo3-cms-extension[Caching](/categories/caching)

b3n/typo3-predis-cache
======================

TYPO3 backend cache based on predis

1.0.0(9y ago)2642MITPHP

Since Jan 14Pushed 9y ago2 watchersCompare

[ Source](https://github.com/benjaminhirsch/typo3-predis-cache)[ Packagist](https://packagist.org/packages/b3n/typo3-predis-cache)[ RSS](/packages/b3n-typo3-predis-cache/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

TYPO3 Redis caching backend
===========================

[](#typo3-redis-caching-backend)

Instead of using the PHP extension "redis" like the build-in TYPO3 Redis caching backend, this one uses the predis () library - so no PHP extension is required!

Most of this library is identical to the build-in redis backend, I simply changed the redis calls.

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

[](#installation)

\#####Composer

```
composer require b3n/typo3-predis-cache
```

Usage
-----

[](#usage)

\#####Example single server configuration

```
return [
   'SYS' => [
      'caching' => [
         'cache_pages' => [
            'backend' => \B3N\TYPO3\Cache\Backend\RedisBackend::class,
            'options' => [
                'defaultLifetime' => 0,
                'predis' => [
                    'options' => [],
                    'parameters' => [
                        'tcp://127.0.0.1:6379',
                    ],
                ],
            ],
         ],
      ],
   ],
];
```

\#####Example configuration with replication

```
return [
   'SYS' => [
      'caching' => [
         'cache_pages' => [
            'backend' => \B3N\TYPO3\Cache\Backend\RedisBackend::class,
            'options' => [
                'defaultLifetime' => 0,
                'predis' => [
                    'options' => [
                        'replication' => true,
                    ],
                    'parameters' => [
                        'tcp://127.0.0.1:6379?alias=master',
                        'tcp://127.0.0.1:6379',
                    ],
                ],
            ],
         ],
      ],
   ],
];
```

You can pass every setting like you would when you use predis directly. For more information please have a look here:

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3402d ago

### Community

Maintainers

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

---

Top Contributors

[![benjaminhirsch](https://avatars.githubusercontent.com/u/2293943?v=4)](https://github.com/benjaminhirsch "benjaminhirsch (2 commits)")

---

Tags

rediscacheextensiontypo3

### Embed Badge

![Health badge](/badges/b3n-typo3-predis-cache/health.svg)

```
[![Health](https://phpackages.com/badges/b3n-typo3-predis-cache/health.svg)](https://phpackages.com/packages/b3n-typo3-predis-cache)
```

###  Alternatives

[contributte/redis

Redis client integration into Nette framework

181.6M2](/packages/contributte-redis)[abouvier/slim-redis-cache

Redis cache middleware for Slim framework

172.0k](/packages/abouvier-slim-redis-cache)[quick/cache

This is a cache system that uses Redis for rapid caching.

122.7k](/packages/quick-cache)

PHPackages © 2026

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