Jump to content

Recommended Posts

Hi,

 

I was unable to post this in the developer section, so hopefully someone can move it to the right place.

 

I am trying to use the Truckers MP PHP API package with Laravel.

 

I have the following code to get the servers and cache them:

 

$servers = Cache::remember('servers', 10, function () {
	if (Cache::has('servers')) {
		return Cache::get('servers');
	} else {
		$client = new Client();
		return $client->servers()->get();
	}
});

return view('layouts.servers', ['servers' => $servers]);

I don't think it is working correctly because it seems to refresh quicker than the cache duration (10 minutes).

 

Not sure what's missing or wrong.

 

Any help would be appreciated.

Link to comment
Share on other sites

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.