重置每次访问中的缓存TTL

时间:2019-09-07 06:05:23

标签: laravel laravel-5 caching laravel-5.8 laravel-cache

我想知道从上次访问以来是否有任何方法可以更新缓存TTL?

目前,我有一种方法可以通过API调用登录到Adobe连接,并且API会话自上次调用起有效期为4天。 但是我的缓存驱动程序从添加的那一刻起,仅将会话保留在缓存中4天。但自上次访问以来,我想将其保留4天!

有什么方法可以更新缓存TTL? 我敢肯定,忘记并重新插入密钥不是最佳实践。


    /**
     * Login Client Based on information that introduced in environment/config file
     *
     * @param Client $client
     *
     * @return void
     */
    private function loginClient(Client $client)
    {
        $config = $this->app["config"]->get("adobeConnect");

        $session = Cache::store($config["session-cache"]["driver"])->remember(
            $config['session-cache']['key'],
            $config['session-cache']['expire'],
            function () use ($config, $client) {
                $client->login($config["user-name"], $config["password"]);
                return $client->getSession();
            });

        $client->setSession($session);
    }

1 个答案:

答案 0 :(得分:1)

您可以监听事件CacheHit,测试密钥模式,然后使用新的TTL重置该密钥的缓存。

为此,您应该创建一个新的侦听器并将其添加到EventServiceProvider

protected $listen = [
    'Illuminate\Cache\Events\CacheHit' => [
        'App\Listeners\UpdateAdobeCache',
    ]
];

听众:

class UpdateAdobeCache {

    public function handle(CacheHit $event)
    {
        if ($event->key === 'the_cache_key') { // you could also test for a match with regexp
            Cache::store($config["session-cache"]["driver"])->put($event->key, $event->value, $newTTL);
        }
    }
}