今天就跟大家聊聊有關(guān)如何在Laravel中使用Model層做數(shù)據(jù)緩存,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
十多年專(zhuān)注成都網(wǎng)站制作,成都企業(yè)網(wǎng)站建設(shè),個(gè)人網(wǎng)站制作服務(wù),為大家分享網(wǎng)站制作知識(shí)、方案,網(wǎng)站設(shè)計(jì)流程、步驟,成功服務(wù)上千家企業(yè)。為您提供網(wǎng)站建設(shè),網(wǎng)站制作,網(wǎng)頁(yè)設(shè)計(jì)及定制高端網(wǎng)站建設(shè)服務(wù),專(zhuān)注于成都企業(yè)網(wǎng)站建設(shè),高端網(wǎng)頁(yè)制作,對(duì)混凝土攪拌罐車(chē)等多個(gè)方面,擁有豐富的網(wǎng)站維護(hù)經(jīng)驗(yàn)。假設(shè)你有很多個(gè)Comment
的 Article
模型,給定下面的Laravel blade 模板,你就可以像下面這樣訪問(wèn) /article/:id
路由時(shí)得到評(píng)論的數(shù)量:
<h4>$article->comments->count() {{ str_plural('Comment', $article->comments->count())</h4>
您可以在控制器中緩存評(píng)論的計(jì)數(shù),但是當(dāng)您有多個(gè)需要緩存的一次性查詢(xún)和數(shù)據(jù)時(shí),控制器會(huì)變得非常臃腫難看。使用控制器,訪問(wèn)緩存的數(shù)據(jù)也不是很方便。
我們可以構(gòu)建一個(gè)模板,它僅在文章更新時(shí)訪問(wèn)數(shù)據(jù)庫(kù),并且訪問(wèn)該模型的所有代碼都可以獲取緩存值:
<h4>$article->cached_comments_count {{ str_plural('Comment', $article->cached_comments_count)</h4>
通過(guò)使用模型訪問(wèn)器,我們可以緩存基于最后一次文章更新的評(píng)論計(jì)數(shù)值。
因此,在評(píng)論新增或刪除時(shí)我們?cè)撛趺锤挛恼碌?nbsp;updated_at
列值呢?
先進(jìn)入 touch 方法看看。
模型的觸發(fā)
可以通過(guò)使用模型的 touch()
方法來(lái)更新文章的 updated_at
列值:
$ php artisan tinker >>> $article = \App\Article::first(); => App\Article {#746 id: 1, title: "Hello World", body: "The Body", created_at: "2018-01-11 05:16:51", updated_at: "2018-01-11 05:51:07", } >>> $article->updated_at->timestamp => 1515649867 >>> $article->touch(); => true >>> $article->updated_at->timestamp => 1515650910
我們可以用更新的 timestamp 值使緩存失效。不過(guò)在新增或刪除一個(gè)評(píng)論時(shí),我們?cè)趺从|發(fā)修改文章的 updated_at
字段呢?
碰巧 Eloquent 模型中有一個(gè)屬性就叫 $touches
。下面是我們的評(píng)論模型的大概樣子:
<?php namespace App; use App\Article; use Illuminate\Database\Eloquent\Model; class Comment extends Model { protected $guarded = []; protected $touches = ['article']; public function article() { return $this->belongsTo(Article::class); } }
這里的 $touches
屬性是個(gè)數(shù)組,包含了在評(píng)論的創(chuàng)建、保存和刪除時(shí)會(huì)引起“觸發(fā)”的關(guān)聯(lián)信息。
緩存的屬性
我們先回到 $article->cached_comments_count
訪問(wèn)器。該方法的實(shí)現(xiàn)可能象 App\Article
模型中的樣子:
public function getCachedCommentsCountAttribute() { return Cache::remember($this->cacheKey() . ':comments_count', 15, function () { return $this->comments->count(); }); }
我們使用鍵值的 cacheKey()
方法緩存模型 15 分鐘,然后簡(jiǎn)單地在閉包方法中返回評(píng)論計(jì)數(shù)值。
注意,我們也用到了 Cache::rememberForever()
方法,靠著緩存機(jī)制的垃圾回收策略以刪除過(guò)期的鍵值。我設(shè)置了一個(gè)定時(shí)器,以便在每隔 15 分鐘的緩存刷新間隔里,緩存可在該時(shí)間的多數(shù)范圍內(nèi)有高的命中率。
cacheKey()
方法要用到模型的鍵值,并且在模型更新時(shí)對(duì)應(yīng)緩存失效。下面是我的 cacheKey
實(shí)現(xiàn)代碼:
public function cacheKey() { return sprintf( "%s/%s-%s", $this->getTable(), $this->getKey(), $this->updated_at->timestamp ); }
模型的 cacheKey()
方法示例輸出結(jié)果可能返回下面的字串信息:
articles/1-1515650910
這個(gè)鍵值是由表名、模型id值及當(dāng)前 updated_at
的 timestamp 值組成。一旦我們觸發(fā)這個(gè)模型,timestamp 值就會(huì)更新,并且我們的模型緩存就會(huì)相應(yīng)地失效。
以下是 Article
模型的完整代碼:
<?php namespace App; use App\Comment; use Illuminate\Support\Facades\Cache; use Illuminate\Database\Eloquent\Model; class Article extends Model { public function cacheKey() { return sprintf( "%s/%s-%s", $this->getTable(), $this->getKey(), $this->updated_at->timestamp ); } public function comments() { return $this->hasMany(Comment::class); } public function getCachedCommentsCountAttribute() { return Cache::remember($this->cacheKey() . ':comments_count', 15, function () { return $this->comments->count(); }); } }
然后是關(guān)聯(lián)的 Comment
模型:
<?php namespace App; use App\Article; use Illuminate\Database\Eloquent\Model; class Comment extends Model { protected $guarded = []; protected $touches = ['article']; public function article() { return $this->belongsTo(Article::class); } }
接下來(lái)做什么?
我已經(jīng)向你展示了如何緩存一個(gè)簡(jiǎn)單的評(píng)論計(jì)數(shù),但是如何緩存所有的評(píng)論呢?
public function getCachedCommentsAttribute() { return Cache::remember($this->cacheKey() . ':comments', 15, function () { return $this->comments; }); }
你也可以選擇將評(píng)論轉(zhuǎn)換為數(shù)組替代序列化模型,只允許在前端對(duì)數(shù)據(jù)進(jìn)行簡(jiǎn)單的數(shù)組訪問(wèn):
public function getCachedCommentsAttribute() { return Cache::remember($this->cacheKey() . ':comments', 15, function () { return $this->comments->toArray(); }); }
看完上述內(nèi)容,你們對(duì)如何在Laravel中使用Model層做數(shù)據(jù)緩存有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。
分享題目:如何在Laravel中使用Model層做數(shù)據(jù)緩存-創(chuàng)新互聯(lián)
鏈接分享:http://m.newbst.com/article26/dgjsjg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)、網(wǎng)站維護(hù)、網(wǎng)站排名、手機(jī)網(wǎng)站建設(shè)、云服務(wù)器、電子商務(wù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容