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 yesterday

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 17% 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

[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)[rapidwebltd/rw-file-cache

RW File Cache is a PHP File-based Caching Library. Its syntax is designed to closely resemble the PHP memcache extension.

15196.8k7](/packages/rapidwebltd-rw-file-cache)[yuzuru-s/redis-recommend

Wrapping Redis's sorted set APIs for specializing recommending operations.

392.9k](/packages/yuzuru-s-redis-recommend)

PHPackages © 2026

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