$cached
$cached : array
Cacheds data.
Memcache adapter class.
The MemcachedAdapter
class implements a cache adapter that uses the Memcached
extension to interact with a Memcached server. It extends the AbstractCacheAdapter
class and provides methods to check, retrieve, store, and manage cached data using
Memcached.
put(string $key, mixed $value, ?int $seconds = null) : $this
Store a value in the cache with an optional expiration time.
string | $key | Holds the cache key to store. |
mixed | $value | Holds the value to store in the cache. |
?int | $seconds | Holds the number of seconds until the cache item expires (null for no expiration). |
Return the cache adapter instance.