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
Return Return
(boolean)
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() ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.17.0 | Introduced. |