您好,登錄后才能下訂單哦!
Laravel中怎么利用memcached緩存對文章增刪改查進行優化,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
1、準備工作
路由及控制器
路由的定義和控制器的創建保持和創建RESTFul風格控制器實現文章增刪改查中一樣。
創建數據表
關于文章對應數據表我們在數據庫部分使用查詢構建器實現對數據庫的高級查詢已有提及,這里我們使用之前創建的數據表即可。
創建文章模型
關于文章模型Post的創建也和之前Eloquent ORM部分講ORM概述、模型定義及基本查詢中創建的一致。
2、修改控制器
在之前我們是通過緩存實現對文章的增刪改查操作,這里我們將其修改為通過數據庫實現增刪改查操作:
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Cache; use App\Models\Post; use App\Http\Requests; use App\Http\Controllers\Controller; class PostController extends Controller { /** * 顯示文章列表. * * @return Response */ public function index() { //使用all獲取所有數據,如果數據量大采用分頁獲取 $posts = Post::all(); if(!$posts) exit('還沒有發布任何文章!'); $html = '<ul>'; foreach ($posts as $post) { $html .= '<li><a href='.route('post.show',['post'=>$post]).'>'.$post->title.'</li>'; } $html .= '</ul>'; return $html; } /** * 創建新文章表單頁面 * * @return Response */ public function create() { $postUrl = route('post.store'); $csrf_field = csrf_field(); $html = <<<CREATE <form action="$postUrl" method="POST"> $csrf_field <input type="text" name="title"><br/><br/> <textarea name="content" cols="50" rows="5"></textarea><br/><br/> <input type="submit" value="提交"/> </form> CREATE; return $html; } /** * 將新創建的文章存儲到存儲器 * * @param Request $request * @return Response */ public function store(Request $request) { $title = $request->input('title'); $content = $request->input('content'); $post = new Post; $post->title = $title; $post->content = $content; $post->save(); return redirect()->route('post.show',['post'=>$post]); } /** * 顯示指定文章 * * @param int $id * @return Response */ public function show($id) { $post = Cache::get('post_'.$id); if(!$post){ $post = Post::find($id); if(!$post) exit('指定文章不存在!'); Cache::put('post_'.$id,$post,60*24*7); } if(!Cache::get('post_views_'.$id)) Cache::forever('post_views_'.$id,0); $views = Cache::increment('post_views_'.$id); Cache::forever('post_views_'.$id,$views); $editUrl = route('post.edit',['post'=>$post]); $deleteUrl = route('post.destroy',['post'=>$post]); $html = <<<POST <h4>{$post->title}</h4> <p>{$post->content}</p> <i>已有{$views}人閱讀</i> <p> <a href="{$editUrl}">編輯</a> </p> POST; return $html; } /** * 顯示編輯指定文章的表單頁面 * * @param int $id * @return Response */ public function edit($id) { $post = Post::find($id); if(!$post) exit('指定文章不存在!'); $postUrl = route('post.update',['post'=>$post]); $csrf_field = csrf_field(); $html = <<<CREATE <form action="$postUrl" method="POST"> $csrf_field <input type="hidden" name="_method" value="PUT"/> <input type="text" name="title" value="{$post->title}"><br/><br/> <textarea name="content" cols="50" rows="5">{$post->content}</textarea><br/><br/> <input type="submit" value="提交"/> </form> CREATE; return $html; } /** * 在存儲器中更新指定文章 * * @param Request $request * @param int $id * @return Response */ public function update(Request $request, $id) { $post = Post::find($id); if(!$post) exit('指定文章不存在!'); $title = $request->input('title'); $content = $request->input('content'); $post->title = $title; $post->content = $content; $post->save(); return redirect()->route('post.show',['post'=>$post]); } /** * 從存儲器中移除指定文章 * * @param int $id * @return Response */ public function destroy($id) { $post = Post::find($id); if(!$post) exit('指定被刪除文章不存在!'); if($post->delete()){ redirect()->route('post.index'); }else{ exit('刪除文章失敗!'); } } }
需要注意的是在show方法中,我們首先從緩存中取文章數據,緩存中不存在才會去數據庫取,同時將數據回寫到緩存中,由于對數據庫的操作大部分都是讀操作,所以這一點小小的改進對性能卻有很大提升,尤其是在海量數據時。此外我們還將訪問量持久化到緩存中以提升性能。
3、在模型事件中使用緩存
我們還可以通過模型事件在文章進行增刪改的時候觸發相應事件將修改保存到緩存中,這里我們簡單講模型事件注冊到AppServiceProvider的boot方法中:
//保存之后更新緩存數據 Post::saved(function($post){ $cacheKey = 'post_'.$post->id; $cacheData = Cache::get($cacheKey); if(!$cacheData){ Cache::add($cacheKey,$post,60*24*7); }else{ Cache::put($cacheKey,$post,60*24*7); } }); //刪除之后清除緩存數據 Post::deleted(function($post){ $cacheKey = 'post_'.$post->id; $cacheData = Cache::get($cacheKey); if($cacheData){ Cache::forget($cacheKey); } if(Cache::get('post_views_'.$post->id)) Cache::forget('post_views_'.$post->id); });
關于Laravel中怎么利用memcached緩存對文章增刪改查進行優化問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。