LLMS_Abstract_User_Data::cache_set( string $key, mixed $val )

Add an item to the cache cache


Parameters Parameters

$key

(string) (Required) cache key

$val

(mixed) (Required) value to cache


Top ↑

Return Return

(boolean)


Top ↑

Source Source

File: includes/abstracts/llms.abstract.user.data.php

	protected function cache_set( $key, $val ) {
		return wp_cache_set( $key, $val, $this->get_cache_group() );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.17.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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