PHPackages                             gigabyte/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. gigabyte/cache

ActiveLibrary[Caching](/categories/caching)

gigabyte/cache
==============

PHP Cache Library

010

Since Feb 18Pushed 10y ago1 watchersCompare

[ Source](https://github.com/FaizRasool/EPC)[ Packagist](https://packagist.org/packages/gigabyte/cache)[ RSS](/packages/gigabyte-cache/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Extreme PHP Cache
=================

[](#extreme-php-cache)

You can install **Extreme PHP Cache** either via package download from github or via composer install. I encourage you to do the latter:

```
{
  "require": {
    "gigabyte/cache": "dev-master"
  }
}
```

This PHP library makes it easy to cache any php object to the cache with the specific parameters. Currently it only support file system cache.

Basic usage
-----------

[](#basic-usage)

```
namespace gigabyte\cache;

$cache_config = new CacheConfig();
$cache_config->setCacheModule('search result')
        ->setIntervalInDay(2)
        ->setCacheFilter(array('serach' => $serach, 'param1' => $value1, 'param2' => $value2));
$cache = CacheFactory::createFileCache($cache_config,"mycache/");
if ($cache->checkCache()) {
    $search_result = $cache->readCache();
} else {
    //calculate $search_result
    $cache->writeCache($search_result);
}
```

###  Health Score

20

—

LowBetter than 12% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 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/b60691058dd36166fd22531b23ec9efba48e6e648e1b009da530cfccec2c5c8f?d=identicon)[FaizRasool](/maintainers/FaizRasool)

---

Top Contributors

[![FaizRasool](https://avatars.githubusercontent.com/u/7045820?v=4)](https://github.com/FaizRasool "FaizRasool (8 commits)")

### Embed Badge

![Health badge](/badges/gigabyte-cache/health.svg)

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

###  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)

PHPackages © 2026

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