lvht / pea
This package is abandoned and no longer maintained.
The author suggests using the angejia/pea package instead.
Eloquent Cache Layer
v0.0.20
2016-03-03 12:24 UTC
Requires
- illuminate/database: ^5.1
- illuminate/redis: ^5.1
Requires (Dev)
- mockery/mockery: ^0.9.4
- phpunit/phpunit: ^5.0
README
Laravel Eloquent 的缓存层。
特色
- 行级缓存
- 表级缓存
- 自动过期
更多细节参考wiki。
安装
composer require angejia/pea:dev-master
使用
在config/app.php
中添加Angejia\Pea\ServiceProvider
,然后使用Angejia\Pea\Model
替换Illuminate\Database\Eloquent\Model
。 最后在模型中设置protected
属性$needCache
为true
即可开启缓存支持。
class UserModel extends \Angejia\Pea\Model { protected $needCache = true; }
如果你有专门的 Redis 缓存实例,可以通过config/database.php
指定。具体参见wiki。
安个家出品。