PHPackages                             itpathsolutions/redisinfo - 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. [Database &amp; ORM](/categories/database)
4. /
5. itpathsolutions/redisinfo

ActiveLibrary[Database &amp; ORM](/categories/database)

itpathsolutions/redisinfo
=========================

Redis Information

1.0.4(1y ago)019↓100%MITBladePHP &gt;=5.8

Since Feb 28Pushed 1y ago1 watchersCompare

[ Source](https://github.com/vidhi-nirmal71/redisinfo)[ Packagist](https://packagist.org/packages/itpathsolutions/redisinfo)[ RSS](/packages/itpathsolutions-redisinfo/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (1)Versions (6)Used By (0)

🚀 Redis Info - Laravel Redis Monitoring &amp; Insights
======================================================

[](#-redis-info---laravel-redis-monitoring--insights)

The **Redis Info** package provides detailed monitoring and insights into your Redis database for Laravel applications. It helps track Redis usage, cache performance, and key management, making it an essential tool for **debugging, optimizing, and monitoring Redis-based operations**.

**⚠️ Important Notice: Install Redis Before Using This Package**
----------------------------------------------------------------

[](#️-important-notice-install-redis-before-using-this-package)

Before using this package, ensure that Redis is installed and running on your server. Without Redis, this package will not function correctly.

Refer to the official Redis installation guide for setup instructions:
🔗 **[Redis System Installation Guide](https://redis.io/docs/getting-started/installation/)**

🔗 **[Laravel Redis Package Installation Guide](https://packagist.org/packages/predis/predis)**

**⚠️ Security Warning**
-----------------------

[](#️-security-warning)

This package does not include any built-in security measures and is intended for admin use only. It exposes sensitive redis details which could pose a security risk if accessed by unauthorized users.Ensure that this package is only used in a secure environment and not exposed to public or unauthorized access.

🏷️ [\#Redis](https://packagist.org/search/?tags=redis) [\#Caching](https://packagist.org/search/?tags=caching) [\#Laravel](https://packagist.org/search/?tags=laravel) [\#PHP](https://packagist.org/search/?tags=php) [\#Performance](https://packagist.org/search/?tags=performance) [\#Optimization](https://packagist.org/search/?tags=optimization) [\#Monitoring](https://packagist.org/search/?tags=monitoring)

Documentation
-------------

[](#documentation)

- [Features](#features)
- [Supported Versions](#supported-versions)
- [Installation](#installation)
- [Commands](#commands)- [Vendor Publish](#vendor-publish)- [Environment Configuration](#environment-configuration)
    - [Accessing the Plugin](#accessing-the-plugin)
- [FAQs](#faqs)
- [Contributing](#contributing)
- [Security Vulnerabilities](#security-vulnerabilities)
- [License](#license)
- [Testing](#testing)
- [Support](#get-support)

**Features**
------------

[](#features)

**Monitor Redis usage** in Laravel applications.
**Track cache and database performance.**
**View real-time Redis statistics** (memory, uptime, commands).
**Filter and search Redis keys dynamically.**
**Supports Laravel 9, 10, and 11** with **PHP 8+ compatibility**.
**Lightweight and optimized for fast responses.**
**Easy setup with vendor publish and migration commands.**
**Detailed analytics for cache and session keys.**

**Supported Versions**
----------------------

[](#supported-versions)

- **PHP:** ^8.0
- **Illuminate Support:** ^9.0 | ^10.0 | ^11.0

**Installation**
----------------

[](#installation)

To install the package, open the terminal and run the following command:

```
composer require itpathsolutions/redisinfo
```

### **Vendor Publish**

[](#vendor-publish)

Run the following command to publish the vendor files:

```
php artisan vendor:publish --provider="Itpathsolutions\RedisInfo\RedisServiceProvider"
```

**Environment Configuration**
-----------------------------

[](#environment-configuration)

After installing, add the following settings to your `.env` file:

```
CACHE_DRIVER=redis
SESSION_DRIVER=redis
QUEUE_CONNECTION=redis
REDIS_CLIENT=predis
REDIS_HOST=your_redis_host   # Default: 127.0.0.1
REDIS_PASSWORD=your_redis_password   # Leave empty if no password
REDIS_PORT=your_redis_port   # Default: 6379
```

**⚠️ Important:** Ensure Redis is installed and running. If any of these values are missing, Laravel may throw errors.

Once done, clear the cache to apply changes:

```
php artisan config:clear
```

**Accessing the Plugin**
------------------------

[](#accessing-the-plugin)

Once installed, you can use the following route to access Redis insights:

```
localhost:8000/redis-info
```

This route displays **memory usage, uptime, key stats, and database info** in a user-friendly dashboard.

**FAQs**
--------

[](#faqs)

### 1. What does this package do?

[](#1-what-does-this-package-do)

🔍 The **Redis Info** package provides an **insightful dashboard** to monitor Redis **memory, keys, and performance statistics** in Laravel applications.

### 2. How do I install the package?

[](#2-how-do-i-install-the-package)

📦 Run the following command in your terminal:

```
composer require itpathsolutions/redisinfo
```

### 3. Which Laravel versions are supported?

[](#3-which-laravel-versions-are-supported)

This package supports **Laravel 9, 10, and 11** with **PHP 8+** compatibility.

### 4. How do I access the Redis Info dashboard?

[](#4-how-do-i-access-the-redis-info-dashboard)

You can access the dashboard via:
👉 `localhost:8000/redis-info`

### 5. How do I update the package to the latest version?

[](#5-how-do-i-update-the-package-to-the-latest-version)

Run the following command to update:

```
composer update itpathsolutions/redisinfo
```

### 6. Can I contribute to this package?

[](#6-can-i-contribute-to-this-package)

🤝 Absolutely! Contributions are welcome. See the [CONTRIBUTING](https://github.com/vidhi-nirmal71/redisinfo/blob/main/CONTRIBUTING.md) guidelines for details.

### 7. Where can I get support?

[](#7-where-can-i-get-support)

For any support or queries, contact us via [IT Path Solutions](https://www.itpathsolutions.com/contact-us/).

**Contributing**
----------------

[](#contributing)

We welcome contributions from the community! Feel free to **Fork** the repository and contribute to this module. You can also create a pull request, and we will merge your changes into the main branch. See [CONTRIBUTING](https://github.com/vidhi-nirmal71/redisinfo/blob/main/CONTRIBUTING.md) for details.

**Security Vulnerabilities**
----------------------------

[](#security-vulnerabilities)

Please review our [Security Policy](https://github.com/vidhi-nirmal71/redisinfo/security/policy) on how to report security vulnerabilities.

**License**
-----------

[](#license)

This package is open-source and available under the MIT License. See the [LICENSE](https://github.com/vidhi-nirmal71/redisinfo/blob/main/LICENSE) file for details.

**Testing**
-----------

[](#testing)

To test this package, run the following command:

```
composer test
```

**Get Support**
---------------

[](#get-support)

- Feel free to [contact us](https://www.itpathsolutions.com/contact-us/) if you have any questions.
- If you find this project helpful, please give us a ⭐ [Star](https://github.com/vidhi-nirmal71/redisinfo/stargazers).

**You may also find our other useful packages:**
------------------------------------------------

[](#you-may-also-find-our-other-useful-packages)

- [MySQL Info Package 🚀](https://packagist.org/packages/itpathsolutions/mysqlinfo)
- [PHP Info Package 🚀](https://packagist.org/packages/itpathsolutions/phpinfo)
- [Role Wise Session Manager Package 🚀](https://packagist.org/packages/itpathsolutions/role-wise-session-manager)
- [Authinfo - User Login Tracker 🚀](https://packagist.org/packages/itpathsolutions/authinfo)
- [Chatbot Package 🚀](https://packagist.org/packages/itpathsolutions/chatbot)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance46

Moderate activity, may be stable

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity36

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.

###  Release Activity

Cadence

Every ~5 days

Total

5

Last Release

418d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f25add47d2862d39be6b505c1557aaadf8382fec3b421c1f90faaec5c30e22d3?d=identicon)[vidhi-nirmal71](/maintainers/vidhi-nirmal71)

---

Top Contributors

[![vidhi-nirmal71](https://avatars.githubusercontent.com/u/125467384?v=4)](https://github.com/vidhi-nirmal71 "vidhi-nirmal71 (5 commits)")

---

Tags

phplaravelmonitoringdatabaseperformancerediscachingpredisoptimizationqueue-managementserver monitoringcache driverphp-redissession-driverredis-insightscache-performance

### Embed Badge

![Health badge](/badges/itpathsolutions-redisinfo/health.svg)

```
[![Health](https://phpackages.com/badges/itpathsolutions-redisinfo/health.svg)](https://phpackages.com/packages/itpathsolutions-redisinfo)
```

###  Alternatives

[spiritix/lada-cache

A Redis based, automated and scalable database caching layer for Laravel

591444.8k2](/packages/spiritix-lada-cache)[bvanhoekelen/performance

PHP performance tool analyser your script on time, memory usage and db query. Support Laravel and Composer for web, web console and command line interfaces.

521774.3k4](/packages/bvanhoekelen-performance)[ymigval/laravel-model-cache

Laravel package for caching Eloquent model queries

7642.2k3](/packages/ymigval-laravel-model-cache)[sarfraznawaz2005/indexer

Laravel package to monitor SELECT queries and offer best possible INDEX fields.

562.7k](/packages/sarfraznawaz2005-indexer)[matchory/elasticsearch

The missing elasticsearch ORM for Laravel!

3059.0k](/packages/matchory-elasticsearch)

PHPackages © 2026

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