Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is supported too.

(no description)

File Size: 415 lines (17 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class


Class: store_test  - X-Ref

Memcached unit test class.

If you wish to use these unit tests all you need to do is add the following definition to
your config.php file.

define('TEST_CACHESTORE_MEMCACHED_TESTSERVERS', '127.0.0.1:11211');

get_class_name()   X-Ref
Returns the memcached class name

return: string

test_valid_keys()   X-Ref
Tests the valid keys to ensure they work.


test_clustered()   X-Ref
Tests the clustering feature.


test_multi_use_compatibility()   X-Ref
Tests that memcached cache store doesn't just flush everything and instead deletes only what belongs to it
when it is marked as a shared cache.


test_dedicated_cache()   X-Ref
Tests that memcached cache store flushes entire cache when it is using a dedicated cache.


get_servers($serverstring)   X-Ref
Given a server string this returns an array of servers.

param: string $serverstring
return: array

create_test_cache_with_config(cache_definition $definition, $configuration = array()   X-Ref
Creates a test instance for unit tests.

param: cache_definition $definition
param: array $configuration
return: null|cachestore_memcached