touch() 공개 메소드

public touch ( $key, $expire )
예제 #1
0
 /**
  * {@inheritdoc}
  */
 public function touch($key, $expire)
 {
     $result = $this->transaction->touch($key, $expire);
     $this->transaction->commit();
     return $result;
 }