/**
  * @param $key string
  * @param $value int
  * @param $exptime
  * @return Mixed
  */
 public function replace($key, $value, $exptime = 0)
 {
     $this->debugLog("replace({$key})");
     return $this->checkResult($key, parent::replace($key, $value, $exptime));
 }