Support the ongoing development of Laravel.io →
Cache Packages Architecture

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?

Last updated 2 years ago.
0

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
});
Last updated 7 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

nasirkhan nasirkhan Joined 16 Jun 2014

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.

© 2025 Laravel.io - All rights reserved.