Moodle PHP Documentation 5.1
Moodle 5.1dev (Build: 20250620) (7d9030acd6e)
Memcache Class Reference

Caches data to memcache. More...

Inheritance diagram for Memcache:
Base

Public Member Functions

 __construct ($location, $name, $type)
 Create a new cache object.
 
 load ()
 Retrieve the data saved to the cache.
 
 mtime ()
 Retrieve the last modified time for the cache.
 
 save ($data)
 Save data to the cache.
 
 touch ()
 Set the last modified time to the current time.
 
 unlink ()
 Remove the cache.
 

Public Attributes

string const TYPE_FEED = 'spc'
 Feed cache type.
 
string const TYPE_IMAGE = 'spi'
 Image cache type.
 

Protected Attributes

Memcache $cache
 Memcache instance.
 
string $name
 Cache name.
 
array $options
 Options.
 

Detailed Description

Caches data to memcache.

Registered for URLs with the "memcache" protocol

For example, memcache://localhost:11211/?timeout=3600&prefix=sp_ will connect to memcache on localhost on port 11211. All tables will be prefixed with sp_ and data will expire after 3600 seconds

@subpackage Caching @uses Memcache

Deprecated
since SimplePie 1.8.0, use implementation of "Psr::SimpleCache::CacheInterface" instead

Constructor & Destructor Documentation

◆ __construct()

Memcache::__construct ( $location,
$name,
$type )

Create a new cache object.

Parameters
string$locationLocation string (from SimplePie::$cache_location)
string$nameUnique ID for the cache
Base::TYPE_FEED | Base::TYPE_IMAGE$typeEither TYPE_FEED for SimplePie data, or TYPE_IMAGE for image data

Implements Base.

Member Function Documentation

◆ load()

Memcache::load ( )

Retrieve the data saved to the cache.

Return values
arrayData for SimplePie::$data

Implements Base.

◆ mtime()

Memcache::mtime ( )

Retrieve the last modified time for the cache.

Return values
intTimestamp

Implements Base.

◆ save()

Memcache::save ( $data)

Save data to the cache.

Parameters
array | SimplePie::SimplePie$dataData to store in the cache. If passed a SimplePie object, only cache the $data property
Return values
boolSuccessfulness

Implements Base.

◆ touch()

Memcache::touch ( )

Set the last modified time to the current time.

Return values
boolSuccess status

Implements Base.

◆ unlink()

Memcache::unlink ( )

Remove the cache.

Return values
boolSuccess status

Implements Base.


The documentation for this class was generated from the following file: