Heim > Fragen und Antworten > Hauptteil
首先我的网站目前使用了这些组件
"require": {
"symfony/http-foundation": "^3.1",
"symfony/routing": "^3.1",
"symfony/http-kernel": "^3.1",
"symfony/event-dispatcher": "^3.1",
"pimple/pimple": "~3.0",
"illuminate/database": "^5.3"
},
因为我用的是symfony的event-dispatcher组件,而没有用laravel的events组件,
所以Eloquent ORM服务初始化的时候这个自带的设置事件监听的功能并不能用
use Illuminate\Events\Dispatcher;
use Illuminate\Container\Container;
$capsule->setEventDispatcher(new Dispatcher(new Container));
而我又不想使用两个功能重复的组件,所以没法监听到Eloquent ORM的事件然后做缓存。
我想实现的主要是用memcache缓存Eloquent ORM查询事件的数据,这一步该怎么做呢...
天蓬老师2017-04-11 10:13:11
缓存查询的数据建议使用 remember
方法。
$value = Cache::remember('users', $minutes, function() {
return DB::table('users')->get();
});
有缓存就直接返回缓存里的数据,否则从数据库查询并设置缓存后返回数据。
至于你说的替换了event dispatcher,怎么监听model事件,可以在model或者基类model里写, 例如:
protected static function boot()
{
parent::boot();
static::created(function ($model) {
// cache model
});
}
每个事件都有其对应的静态方法:saving
saved
updating
updated
creating
created
deleting
deleted