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

Changed the Expire to use specified timeout in env file

parent 965ca5d5
No related branches found
No related tags found
2 merge requests!1399Development,!1386Resolve "Optimize request times"
...@@ -55,7 +55,7 @@ class MetaGerSearch extends Controller ...@@ -55,7 +55,7 @@ class MetaGerSearch extends Controller
foreach ($metager->getResults() as $result) { foreach ($metager->getResults() as $result) {
$pipeline->rpush($metager->getRedisCurrentResultList(), base64_encode(serialize($result))); $pipeline->rpush($metager->getRedisCurrentResultList(), base64_encode(serialize($result)));
} }
$pipeline->expire($metager->getRedisCurrentResultList(), 6000); $pipeline->expire($metager->getRedisCurrentResultList(), env('REDIS_RESULT_CACHE_DURATION'));
$pipeline->execute(); $pipeline->execute();
# Die Ausgabe erstellen: # Die Ausgabe erstellen:
...@@ -154,7 +154,7 @@ class MetaGerSearch extends Controller ...@@ -154,7 +154,7 @@ class MetaGerSearch extends Controller
$resultTmp->new = false; $resultTmp->new = false;
$pipeline->rpush($metager->getRedisCurrentResultList(), base64_encode(serialize($resultTmp))); $pipeline->rpush($metager->getRedisCurrentResultList(), base64_encode(serialize($resultTmp)));
} }
$pipeline->expire($metager->getRedisCurrentResultList(), 6000); $pipeline->expire($metager->getRedisCurrentResultList(), env('REDIS_RESULT_CACHE_DURATION'));
$pipeline->execute(); $pipeline->execute();
} }
......
...@@ -109,7 +109,7 @@ abstract class Searchengine ...@@ -109,7 +109,7 @@ abstract class Searchengine
$redis = Redis::connection(env('REDIS_RESULT_CONNECTION')); $redis = Redis::connection(env('REDIS_RESULT_CONNECTION'));
// We will push the confirmation of the submission to the Result Hash // We will push the confirmation of the submission to the Result Hash
$redis->hset($metager->getRedisEngineResult() . $this->name, "status", "waiting"); $redis->hset($metager->getRedisEngineResult() . $this->name, "status", "waiting");
$redis->expire($metager->getRedisEngineResult() . $this->name, 60); $redis->expire($metager->getRedisEngineResult() . $this->name, env('REDIS_RESULT_CACHE_DURATION'));
// We need to submit a action that one of our workers can understand // We need to submit a action that one of our workers can understand
// The missions are submitted to a redis queue in the following string format // The missions are submitted to a redis queue in the following string format
......
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