예제 #1
0
파일: facade.php 프로젝트: 4Vs/oc-server3
 /**
  * Delete the entry named $key from the cache.
  */
 public static function cache_delete($key)
 {
     Cache::delete("facade#" . $key);
 }
예제 #2
0
파일: update.php 프로젝트: kojoty/okapi
 private static function ver41()
 {
     # Force changelog reset (will be produced one day back)
     Db::execute("delete from okapi_vars where var='last_clog_update'");
     # Force all cronjobs rerun
     Okapi::set_var("cron_nearest_event", 0);
     Cache::delete('cron_schedule');
 }