LLMS_Cache_Helper::invalidate_group( string $group )

Invalidate a cache group prefix.


Parameters Parameters

$group

(string) (Required) Cache group name.


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.cache.helper.php

	public static function invalidate_group( $group ) {
		wp_cache_set( sprintf( 'llms_%s_cache_prefix', $group ), microtime(), $group );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
4.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.