WC_Rate_Limiter::get_cachedprotected staticWC 1.0

Retrieve a cached rate limit.

Method of the class: WC_Rate_Limiter{}

No Hooks.

Returns

true|false|Int.

Usage

$result = WC_Rate_Limiter::get_cached( $action_id );
$action_id(string) (required)
Identifier of the action.

WC_Rate_Limiter::get_cached() code WC 10.4.3

protected static function get_cached( $action_id ) {
	return wp_cache_get( self::get_cache_key( $action_id ), self::CACHE_GROUP );
}