我正在尝试在我的Laravel应用程序中实现一个非常基本的缓存机制。
我安装了Redis,通过终端(src / redis-server)启动它,并在Laravel的配置文件中将缓存从文件更改为redis,但是当我使用缓存时,它比常规查询需要更长(1s vs 2s)。
我在这里遗漏了什么吗?我只是想将查询缓存10分钟。
这是我的FeedController.php
namespace App\Http\Controllers\Frontend\Feed;
use Illuminate\Http\Request;
use Auth;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Models\Company;
use Redis;
use Cache;
class FeedController extends Controller
{
public function index()
{
if (Cache::has('companies')) {
// cache exists.
$companies = Cache::get("companies");
} else {
// cache doesn't exist, create a new one
$companies = Cache::remember("companies",10, function() {
return Company::all();
});
Cache::put("companies", $companies, 10);
}
return view('index')->with('companies', $companies)
}
我的观点
@foreach($companies as $company)
{{$company->name}}
@endforeach
答案 0 :(得分:2)
首先,缓存并不总是更快。其次,您要仔细检查缓存。
你可以使用:
$companies = Cache::remember("companies",10, function() {
return Company::all();
});
它检查缓存项是否存在,如果不存在,它将执行闭包并将结果缓存在指定的键中。缓存:if / else是不必要的,只会减慢速度。