Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.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