예제 #1
0
 /**
  * Delete a session by ID.
  *
  * @param  string  $id
  * @return void
  */
 public function delete($id)
 {
     Cache::driver('memcached')->forget($id);
 }
예제 #2
0
파일: apc.php 프로젝트: hpaul/Google-short
 /**
  * Delete a session by ID.
  *
  * @param  string  $id
  * @return void
  */
 public function delete($id)
 {
     Cache::driver('apc')->forget($id);
 }