PHPackages                             brenoroosevelt/cakephp-pagination-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. brenoroosevelt/cakephp-pagination-cache

ActiveCakephp-plugin[Utility &amp; Helpers](/categories/utility)

brenoroosevelt/cakephp-pagination-cache
=======================================

Pagination Cache plugin for CakePHP 3.x

1.0.0(9y ago)094MITPHPPHP &gt;=5.5.9

Since Jan 25Pushed 9y agoCompare

[ Source](https://github.com/brenoroosevelt/cakephp-pagination-cache)[ Packagist](https://packagist.org/packages/brenoroosevelt/cakephp-pagination-cache)[ RSS](/packages/brenoroosevelt-cakephp-pagination-cache/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

Pagination Cache plugin for CakePHP 3.x
=======================================

[](#pagination-cache-plugin-for-cakephp-3x)

[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](README.md)[![Total Downloads](https://camo.githubusercontent.com/7db7494bdaad777199f98d413e40720239164e3395d5893ab1e8b1790a1ac0f8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6272656e6f726f6f736576656c742f63616b657068702d706167696e6174696f6e2d63616368652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/brenoroosevelt/cakephp-pagination-cache)[![Latest Stable Version](https://camo.githubusercontent.com/83c3470a58e42bc37074479668e0fce310e4db1a455831018cf52ae3175eb4e0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6272656e6f726f6f736576656c742f63616b657068702d706167696e6174696f6e2d63616368652e7376673f7374796c653d666c61742d737175617265266c6162656c3d737461626c65)](https://packagist.org/packages/brenoroosevelt/cakephp-pagination-cache)[![Build Status](https://camo.githubusercontent.com/adf386003bc534d8650d04cd24b6b6ded60b24db980be0695d322a87c7f6db80/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6272656e6f726f6f736576656c742f63616b657068702d706167696e6174696f6e2d63616368652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/brenoroosevelt/cakephp-pagination-cache)[![Coverage Status](https://camo.githubusercontent.com/2ced8339867e7764e55879c62158abd8a75339e85a1f3ce92d37de78859bc43f/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f6769746875622f6272656e6f726f6f736576656c742f63616b657068702d706167696e6174696f6e2d63616368652e7376673f7374796c653d666c61742d737175617265)](https://codecov.io/github/brenoroosevelt/cakephp-pagination-cache)

Installation
------------

[](#installation)

You can install this plugin into your CakePHP application using [composer](http://getcomposer.org).

The recommended way to install composer packages is:

```
composer require brenoroosevelt/cakephp-pagination-cache

```

### Load the plugin

[](#load-the-plugin)

Add following to your `config/bootstrap.php`

```
Plugin::load('BRPaginationCache');
```

Usage
-----

[](#usage)

### Controller class

[](#controller-class)

```
public function index()
{

		// load component with setup param
		$this->loadComponent('BRPaginationCache.PaginationCache', [
				'session' => 'posts_pagination'
		]);

		// restore pagination from session
		$this->PaginationCache->restore();

		// pagination
		$this->set('posts', $this->paginate($this->Posts));

		// save pagination from session
		$this->PaginationCache->save();
}
```

### Persisting pagination params (session)

[](#persisting-pagination-params-session)

All params are persisted using sessions. Make sure to load the Session component.

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity58

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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3443d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/82f73f1c4a1ebcd28bb29e832f0c9cd78a16bd0d57c501157ab2408bdd8817a7?d=identicon)[brenoroosevelt](/maintainers/brenoroosevelt)

---

Top Contributors

[![brenoroosevelt](https://avatars.githubusercontent.com/u/24551532?v=4)](https://github.com/brenoroosevelt "brenoroosevelt (12 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/brenoroosevelt-cakephp-pagination-cache/health.svg)

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

###  Alternatives

[dereuromark/cakephp-tools

A CakePHP plugin containing lots of useful and reusable tools

333972.2k49](/packages/dereuromark-cakephp-tools)[cakedc/cakephp-phpstan

CakePHP plugin extension for PHPStan.

42776.5k46](/packages/cakedc-cakephp-phpstan)[dereuromark/cakephp-dto

A CakePHP plugin for generating immutable Data Transfer Objects with full type safety

3096.0k5](/packages/dereuromark-cakephp-dto)[dereuromark/cakephp-setup

A CakePHP plugin containing lots of useful management tools

35184.7k2](/packages/dereuromark-cakephp-setup)[dereuromark/cakephp-calendar

A CakePHP plugin to easily create calendars.

1674.7k1](/packages/dereuromark-cakephp-calendar)[dereuromark/cakephp-flash

A CakePHP plugin around powerful flash message handling.

1229.9k2](/packages/dereuromark-cakephp-flash)

PHPackages © 2026

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