LLMS_Abstract_Session_Database_Handler::get_cache_key( string $key )
Retrieve a prefixed cache key
Parameters Parameters
- $key
-
(string) (Required) Unprefixed cache key.
Return Return
(string)
Source Source
File: includes/abstracts/llms-abstract-session-database-handler.php
protected function get_cache_key( $key ) { return LLMS_Cache_Helper::get_prefix( $this->cache_group ) . $key; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |