Function Self_learning_cache->__construct
Definitions
sources/caches.php
- Constructor. Initialise our cache.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $bucket_name | ID_TEXT | No | No | required parameter | N/A | N/A | The identifier this cache object is for |
Preview
Code (PHP)
/**
* Constructor. Initialise our cache.
*
* @param ID_TEXT $bucket_name The identifier this cache object is for
*/
public function __construct(string $bucket_name)
* Constructor. Initialise our cache.
*
* @param ID_TEXT $bucket_name The identifier this cache object is for
*/
public function __construct(string $bucket_name)

