일부 데이터를 제공하기 위해 API를 구축하고 있다고 가정해 보겠습니다. GET 응답이 매우 느리다는 것을 알게 됩니다. 쿼리 최적화를 시도하고 자주 쿼리되는 열을 기준으로 데이터베이스 테이블을 인덱싱했지만 여전히 원하는 응답 시간을 얻지 못하고 있습니다. 다음 단계는 API용 캐싱 레이어를 작성하는 것입니다. 여기서 '캐싱 레이어'는 성공적인 응답을 빠르게 검색할 수 있는 저장소에 저장하는 미들웨어에 대한 멋진 용어일 뿐입니다. 예를 들어 Redis, Memcached 등이 API에 대한 추가 요청이 있으면 스토어에서 데이터를 사용할 수 있는지 확인하고 응답을 제공합니다.
여기까지 오셨다면 laravel 앱을 만드는 방법을 아실 것이라고 가정합니다. 또한 연결할 로컬 또는 클라우드 Redis 인스턴스가 있어야 합니다. 로컬에 Docker가 있는 경우 여기에 작성 파일을 복사할 수 있습니다. 또한 Redis 캐시 드라이버에 연결하는 방법에 대한 안내는 여기에서 읽어보세요.
캐싱 계층이 예상대로 작동하는지 확인하는 데 도움이 됩니다. 물론 데이터가 필요합니다. Post라는 모델이 있다고 가정해 보겠습니다. 그래서 몇 가지 게시물을 작성하고 데이터베이스 집약적일 수 있는 복잡한 필터링도 추가한 다음 캐싱을 통해 최적화할 것입니다.
이제 미들웨어 작성을 시작해 보겠습니다.
다음을 실행하여 미들웨어 뼈대를 만듭니다
php artisan make:middleware CacheLayer
그런 다음 api 미들웨어 그룹 아래 app/Http/Kernel.php에 다음과 같이 등록하세요.
protected $middlewareGroups = [ 'api' => [ CacheLayer::class, ], ];
그러나 Laravel 11을 실행하고 있다면 bootstrap/app.php에 등록하세요
->withMiddleware(function (Middleware $middleware) { $middleware->api(append: [ \App\Http\Middleware\CacheLayer::class, ]); })
그래서 캐시 드라이버는 키-값 저장소입니다. 따라서 키가 있으면 값은 json입니다. 따라서 리소스를 식별하려면 고유한 캐시 키가 필요합니다. 고유한 캐시 키는 캐시 무효화(예: 새 리소스가 생성/업데이트될 때 캐시 항목 제거)에도 도움이 됩니다. 캐시 키 생성에 대한 나의 접근 방식은 요청 URL, 쿼리 매개변수 및 본문을 개체로 바꾸는 것입니다. 그런 다음 문자열로 직렬화하십시오. 캐시 미들웨어에 다음을 추가하세요:
class CacheLayer { public function handle(Request $request, Closure $next): Response { } private function getCacheKey(Request $request): string { $routeParameters = ! empty($request->route()->parameters) ? $request->route()->parameters : [auth()->user()->id]; $allParameters = array_merge($request->all(), $routeParameters); $this->recursiveSort($allParameters); return $request->url() . json_encode($allParameters); } private function recursiveSort(&$array): void { foreach ($array as &$value) { if (is_array($value)) { $this->recursiveSort($value); } } ksort($array); } }
코드를 한 줄씩 살펴보겠습니다.
따라서 구축 중인 애플리케이션의 성격에 따라 달라집니다. 캐시하고 싶지 않은 일부 GET 경로가 있으므로 이를 위해 해당 경로와 일치하는 정규식을 사용하여 상수를 만듭니다. 다음과 같습니다.
private const EXCLUDED_URLS = [ '~^api/v1/posts/[0-9a-zA-Z]+/comments(\?.*)?$~i' ' ];
이 경우 이 정규식은 모든 게시물의 댓글과 일치합니다.
이를 위해서는 이 항목을 config/cache.php에 추가하세요
'ttl' => now()->addMinutes(5),
이제 미들웨어 코드를 작성할 수 있는 모든 예비 단계가 설정되었습니다.
public function handle(Request $request, Closure $next): Response { if ('GET' !== $method) { return $next($request); } foreach (self::EXCLUDED_URLS as $pattern) { if (preg_match($pattern, $request->getRequestUri())) { return $next($request); } } $cacheKey = $this->getCacheKey($request); $exception = null; $response = cache() ->tags([$request->url()]) ->remember( key: $cacheKey, ttl: config('cache.ttl'), callback: function () use ($next, $request, &$exception) { $res = $next($request); if (property_exists($res, 'exception') && null !== $res->exception) { $exception = $res; return null; } return $res; } ); return $exception ?? $response; }
When new resources are created/updated, we have to clear the cache, so users can see new data. and to do this we will tweak our middleware code a bit. so in the part where we check the request method we add this:
if ('GET' !== $method) { $response = $next($request); if ($response->isSuccessful()) { $tag = $request->url(); if ('PATCH' === $method || 'DELETE' === $method) { $tag = mb_substr($tag, 0, mb_strrpos($tag, '/')); } cache()->tags([$tag])->flush(); } return $response; }
So what this code is doing is flushing the cache for non-GET requests. Then for PATCH and Delete requests we are stripping the {id}. so for example if the request url is PATCH /users/1/posts/2 . We are stripping the last id leaving /users/1/posts. this way when we update a post, we clear the cache of all a users posts. so the user can see fresh data.
Now with this we are done with the CacheLayer implementation. Lets test it
Let's say we want to retrieve all a users posts, that has links, media and sort it by likes and recently created. the url for that kind of request according to the json:api spec will look like: /posts?filter[links]=1&filter[media]=1&sort=-created_at,-likes. on a posts table of 1.2 million records the response time is: ~800ms
and after adding our cache middleware we get a response time of 41ms
Great success!
Another optional step is to compress the json payload we store on redis. JSON is not the most memory-efficient format, so what we can do is use zlib compression to compress the json before storing and decompress before sending to the client.
the code for that will look like:
$response = cache() ->tags([$request->url()]) ->remember( key: $cacheKey, ttl: config('cache.ttl'), callback: function () use ($next, $request, &$exception) { $res = $next($request); if (property_exists($res, 'exception') && null !== $res->exception) { $exception = $res; return null; } return gzcompress($res->getContent()); } ); return $exception ?? response(gzuncompress($response));
The full code for this looks like:
getMethod(); if ('GET' !== $method) { $response = $next($request); if ($response->isSuccessful()) { $tag = $request->url(); if ('PATCH' === $method || 'DELETE' === $method) { $tag = mb_substr($tag, 0, mb_strrpos($tag, '/')); } cache()->tags([$tag])->flush(); } return $response; } foreach (self::EXCLUDED_URLS as $pattern) { if (preg_match($pattern, $request->getRequestUri())) { return $next($request); } } $cacheKey = $this->getCacheKey($request); $exception = null; $response = cache() ->tags([$request->url()]) ->remember( key: $cacheKey, ttl: config('cache.ttl'), callback: function () use ($next, $request, &$exception) { $res = $next($request); if (property_exists($res, 'exception') && null !== $res->exception) { $exception = $res; return null; } return gzcompress($res->getContent()); } ); return $exception ?? response(gzuncompress($response)); } private function getCacheKey(Request $request): string { $routeParameters = ! empty($request->route()->parameters) ? $request->route()->parameters : [auth()->user()->id]; $allParameters = array_merge($request->all(), $routeParameters); $this->recursiveSort($allParameters); return $request->url() . json_encode($allParameters); } private function recursiveSort(&$array): void { foreach ($array as &$value) { if (is_array($value)) { $this->recursiveSort($value); } } ksort($array); } }
This is all I have for you today on caching, Happy building and drop any questions, commments and improvements in the comments!
위 내용은 Laravel API용 캐싱 레이어를 구축하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!