示例#1
0
文件: Cache.php 项目: tritumRz/rest
 /**
  * Returns the cache key for the current request
  *
  * @return string
  */
 protected function _getCacheKey()
 {
     return sha1($this->currentRequest->url() . '_' . $this->currentRequest->format() . '_' . $this->currentRequest->method());
 }