1
0
Fork 0

Update ApiController

This commit is contained in:
Daniel Supernault 2019-05-13 20:26:52 -06:00
parent 5379c462bf
commit d78f7c7734
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 8 additions and 2 deletions

View File

@ -9,8 +9,7 @@ use App\{
Profile,
UserFilter
};
use Auth;
use Cache;
use Auth, Cache, Redis;
use Illuminate\Http\Request;
use App\Services\SuggestionService;
@ -71,6 +70,13 @@ class ApiController extends BaseApiController
->pluck('filterable_id')->toArray();
$following = array_merge($following, $filters);
$key = config('cache.prefix').':api:local:exp:rec:'.$id;
$ttl = (int) Redis::ttl($key);
if($request->filled('refresh') == true && (290 > $ttl) == true) {
Cache::forget('api:local:exp:rec:'.$id);
}
$res = Cache::remember('api:local:exp:rec:'.$id, now()->addMinutes(5), function() use($id, $following, $ids) {
return Profile::select(
'id',