PHP Package: illuminate/redis

Illuminate Redis library provides seamless integration with Redis server for efficient caching and data storage in PHP applications.

Current Version: 12.18.0
Last Updated: Date not available
PHP Requirement: ^8.2
Dependencies:
illuminate/support
predis/predis
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Illuminate Redis is a powerful library that simplifies Redis database interactions in PHP projects, offering high-performance caching, session management, and queuing functionalities. By leveraging Redis as a backend, developers can enhance application speed, scalability, and reliability. With support for various data types, pub/sub messaging, and pipelining, this library ensures robust and optimized data handling in Laravel and other PHP frameworks.

📦 Show all available classes🔗 View on GitHub

Download Latest Version: 12.18.0

Download Download v12.18.0

Previous Versions

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php
// Example from PHPlibraries.com
require_once 'libs/illuminate/redis/12.18.0/loader.php';
require_once 'libs/illuminate/support/12.18.0/loader.php';
require_once 'libs/predis/predis/3.0.1/loader.php';

use Illuminate\Redis\RedisManager;
use Illuminate\Redis\Connections\Connection;

$obj = new RedisManager();
echo '✅ Test OK: ' . get_class($obj);
?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.

Community Discussion

Ask questions, share tips, or report issues below.