wp_cache_gc_watcher()WPSCache 1.0

No Hooks.

Return

null. Nothing (null).

Usage

wp_cache_gc_watcher();

wp_cache_gc_watcher() code WPSCache 1.12.0

function wp_cache_gc_watcher() {
	if ( false == wp_next_scheduled( 'wp_cache_gc' ) ) {
		wp_cache_debug( 'GC Watcher: scheduled new gc cron.', 5 );
		schedule_wp_gc();
	}
}