Skip to content
Snippets Groups Projects
Commit 5a5bb17d authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Cache angeschaltet

parent f5fcc8f2
No related branches found
No related tags found
No related merge requests found
......@@ -140,7 +140,7 @@ class ProxyController extends Controller
$result = [];
$httpcode = 200;
if (!Cache::has($hash) || 1 == 1) {
if (!Cache::has($hash)) {
// Inits the Curl connection for being able to preload multiple URLs while using a keep-alive connection
$this->initCurl();
$result = $this->getUrlContent($targetUrl, false);
......@@ -194,14 +194,15 @@ class ProxyController extends Controller
abort(500, $contentType . " " . $targetUrl);
break;
}
# We are gonna cache all files for 60 Minutes to reduce
# redundant file transfers:
$val = base64_encode(serialize($result));
Cache::put($hash, $val, 60);
}
curl_close($this->ch);
# We are gonna cache all files for 60 Minutes to reduce
# redundant file transfers:
$val = base64_encode(serialize($result));
Cache::put($hash, $val, 60);
} else {
$result = Cache::get($hash);
// Base64 decode:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment