We are building an application using Laravel. It is a very high traffic web application and we are using a 3rd party API to show a set of data within our application.
The issue is there is a limit in that 3rd party API. We are thinking to cache the responses and serve our users from cache and the cache will be updated in a certain frequency (may be after 5 minutes the cache will be updated).
Should we maintain a local database or can we use Redis or Memcached for caching? which is the better approach?
You can just wrap your API call inside a Laravel Cache remember method
$data = Cache::remember('api_data', $minutes, function () {
return API::getData(); // your API call
});
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community