Support the ongoing development of Laravel.io →
Requests Cache
Last updated 1 year ago.
0

Also, here's my middleware:

class GetCache
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {

        $key = StringHelper::keygen($request->path());

        if (Cache::has($key) && Auth::guest()) {
            $content=Cache::get($key);
            return response($content);
        }

        return $next($request);
    }
}


class PutCache
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        $response = $next($request);
        $key = StringHelper::keygen($request->path());

        if (! Cache::has($key) && Auth::guest()) {
            Cache::put($key, $response->getContent(), 600);
        }

        return $next($request);
    }
}

Last updated 8 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.