public function set($id, $value, $ttl = null) { try { $this->redis->set($id, $value); if ($ttl) { $this->redis->expire($id, $ttl); } return true; ...
確定! 回上一頁