Php/laravel/laravel5/cache
提供: 初心者エンジニアの簡易メモ
各種キャッシュ
redis, memcache, file, databaseなど選べる
設定
例としてmemcacheを確認
vi config/cache.php - 'default' => env('CACHE_DRIVER', 'file'), + 'default' => env('CACHE_DRIVER', 'memcached'), 'memcached' => [ 'driver' => 'memcached', 'servers' => [ [ 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 'port' => env('MEMCACHED_PORT', 11211), 'weight' => 100, ], ], ],
各種処理
use Illuminate\Support\Facades\Cache; // 保存 Cache::put('name', "tarou", 10); // 10分 // 取得 echo Cache::get('name'); // tarou // 保持確認 if (Cache::has('name')) { } // 削除 Cache::forget('name');
htmlcacheをする
namespace App\Http\Controllers; use App\Http\Requests; use Illuminate\Http\Request; use Illuminate\Support\Facades\Cache; class DebugController extends Controller { public function index() { if (Cache::has('htmlkey')) { return Cache::get('htmlkey'); } $data = ["デバッグ"]; $html = view('debug', $data)->render(); Cache::put('htmlkey', $html, 10); return $html; } }