You are here

function qpcache_cron in QueryPath 7.3

Same name and namespace in other branches
  1. 6 qpcache/qpcache.module \qpcache_cron()
  2. 7.2 qpcache/qpcache.module \qpcache_cron()

Implements hook_cron().

Periodically prune dead entries from the cache.

File

qpcache/qpcache.module, line 42
The main file for qpcache.

Code

function qpcache_cron() {
  QPCache::prune();
}