wpsc_enable_preload() WPSCache 1.0
No Hooks.
Return
Null. Nothing.
Usage
wpsc_enable_preload();
Code of wpsc_enable_preload() wpsc enable preload WPSCache 1.7.1
function wpsc_enable_preload() {
global $cache_path;
@unlink( $cache_path . "preload_mutex.tmp" );
update_option( 'preload_cache_counter', array( 'c' => 0, 't' => time() ) );
wp_schedule_single_event( time() + 10, 'wp_cache_full_preload_hook' );
}