/**
  * Returns true if the cache store supports native ttl.
  * @return bool
  */
 protected function store_supports_native_ttl()
 {
     if ($this->supportsnativettl === null) {
         $this->supportsnativettl = $this->store->supports_native_ttl();
     }
     return $this->supportsnativettl;
 }