maybe_stop_gc()
No Hooks.
Returns
null. Nothing (null).
Usage
maybe_stop_gc( $flag );
- $flag(required)
- .
maybe_stop_gc() maybe stop gc code WPSCache 3.1.0
function maybe_stop_gc( $flag ) {
if ( @file_exists( $flag ) ) {
if ( time() - filemtime( $flag ) > 3600 ) {
@unlink( $flag );
wp_cache_debug( "maybe_stop_gc: GC flag found but deleted because it's older than 3600 seconds.", 5 );
return false;
} else {
wp_cache_debug( 'maybe_stop_gc: GC flag found. GC cancelled.', 5 );
return true;
}
} else {
wp_cache_debug( 'maybe_stop_gc: GC flag not found. GC will go ahead..', 5 );
return false;
}
}