Beispiel #1
0
 public function update($key, $data, $updateTimestamp = true)
 {
     if ($this->engine->exists($key)) {
         $this->engine->update($key, $data, $updateTimestamp);
         return true;
     }
     return false;
 }