wpsc_created_advanced_cache action-hookWPSCache 1.0

Usage

add_action( 'wpsc_created_advanced_cache', 'wp_kama_wpsc_created_advanced_cache_action' );

/**
 * Function for `wpsc_created_advanced_cache` action-hook.
 * 
 * @return void
 */
function wp_kama_wpsc_created_advanced_cache_action(){

	// action...
}

Where the hook is called

wp_cache_create_advanced_cache()
wpsc_created_advanced_cache
wp-super-cache/wp-cache.php 2314
do_action( 'wpsc_created_advanced_cache' );

Where the hook is used in WP Super Cache

wp-super-cache/inc/boost.php 139
add_action( 'wpsc_created_advanced_cache', 'wpsc_track_move_from_boost' );