PHPackages                             teepluss/fast - 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. teepluss/fast

ActiveLibrary[Caching](/categories/caching)

teepluss/fast
=============

Fast is a robot making cache instead of your client.

5101PHP

Since Sep 16Pushed 11y ago1 watchersCompare

[ Source](https://github.com/teepluss/laravel4-fast)[ Packagist](https://packagist.org/packages/teepluss/fast)[ RSS](/packages/teepluss-fast/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Fast for Laravel 4
------------------

[](#fast-for-laravel-4)

Fast is a robot making cache instead of your client.

### Installation

[](#installation)

- [Fast on Packagist](https://packagist.org/packages/teepluss/fast)
- [Fast on GitHub](https://github.com/teepluss/laravel4-fast)

To get the latest version of Theme simply require it in your `composer.json` file.

```
"teepluss/fast": "dev-master"

```

You'll then need to run `composer install` to download it and have the autoloader updated.

Once Theme is installed you need to register the service provider with the application. Open up `app/config/app.php` and find the `providers` key.

```
'providers' => array(

    'Teepluss\Fast\FastServiceProvider',

)

```

Fast also ships with a facade which provides the static syntax for creating collections. You can register the facade in the `aliases` key of your `app/config/app.php` file.

```
'aliases' => array(

    'Fast' => 'Teepluss\Fast\Facades\Fast',

)

```

Publish config using artisan CLI.

```
php artisan config:publish teepluss/fast

```

### Basic usage

[](#basic-usage)

Remember your content in (x) seconds.

```
$content = Fast::expireInSecond(10)->remember('key-of-page', function()
{
    $html = 'Your HTML Goes Here.' . rand(1, 1000);

    return $html;
});

return $content;
```

Find out the content problem.

```
$content = Fast::debug(true)->expireInSecond(10)->remember('key-of-page', function()
{
    $html = 'Your HTML Goes Here.' . rand(1, 1000);

    return $html;
});

return $content;
```

Forget your page cache.

```
Fast::forget('key-of-page');
```

Flush all cache.

```
Fast::flush()
```

### Working with artisan.

[](#working-with-artisan)

Forget cache.

```
php artisan fast:forget key-cache

```

Flush all cache.

```
php artisan fast:flush

```

Support or Contact
------------------

[](#support-or-contact)

If you have any problems, Contact

[![Support via PayPal](https://camo.githubusercontent.com/1c4c2a63b268ab949717893dda9628735444f61b8eb8eece283a534338b5b0e5/68747470733a2f2f7261776769746875622e636f6d2f63687269732d2d2d2f446f6e6174696f6e2d4261646765732f6d61737465722f70617970616c2e6a706567)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9GEC8J7FAG6JA)

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

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://avatars.githubusercontent.com/u/1464300?v=4)[Maximus](/maintainers/teepluss)[@teepluss](https://github.com/teepluss)

### Embed Badge

![Health badge](/badges/teepluss-fast/health.svg)

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

###  Alternatives

[predis/predis

A flexible and feature-complete Redis/Valkey client for PHP.

7.8k305.7M2.4k](/packages/predis-predis)[snc/redis-bundle

A Redis bundle for Symfony

1.0k39.4M67](/packages/snc-redis-bundle)[react/cache

Async, Promise-based cache interface for ReactPHP

444112.4M40](/packages/react-cache)[wp-media/wp-rocket

Performance optimization plugin for WordPress

7431.3M3](/packages/wp-media-wp-rocket)[illuminate/cache

The Illuminate Cache package.

12835.6M1.4k](/packages/illuminate-cache)[colinmollenhour/php-redis-session-abstract

A Redis-based session handler with optimistic locking

6325.6M14](/packages/colinmollenhour-php-redis-session-abstract)

PHPackages © 2026

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