Moodle release 4.0.11
[moodle.git] / cache / upgrade.txt
blobb3aa6d20069e83d0f9bf366d36939694e5031634
1 This files describes API changes in /cache/stores/* - cache store plugins.
2 Information provided here is intended especially for developers.
4 === 4.0.10 ===
5 * A new cache_helper::result_found() helper has been added to assist with cache value validation
7 === 4.0 ===
8 * Cache stores may implement new optional function cache_store::get_last_io_bytes() to provide
9   information about the size of data transferred (shown in footer if performance info enabled).
10 * The cache_store class now has functions cache_size_details(), store_total_size(), and
11   estimate_stored_size(), related to size used by the cache. These can be overridden by a cache
12   store to provide better information for the new cache usage admin page.
13 * New functions cache::set_versioned() and cache::get_versioned() can be used to ensure correct
14   behaviour when using a multi-level cache with early cache levels stored locally. (Used when
15   rebuilding modinfo.) There is also a new interface cache_data_source_versionable which can
16   be implemented if you want to make a data source that supports versioning.
18 === 3.10 ===
19 * The function supports_recursion() from the lock_factory interface has been deprecated including the related implementations.
20 * The function extend_lock() from the lock_factory interface has been deprecated without replacement including the related
21   implementations.
22 * The function extend() from the lock class has been deprecated without replacement.
23 * The cache_factory class can now be overridden by an alternative cache config class, which can
24   also now control the frontend display of the cache/admin.php page (see MDL-41492).
26 === 3.9 ===
27 * The record_cache_hit/miss/set methods now take a cache_store instead of a cache_definition object
29 === 3.8 ===
30 * The Redis cache store can now make use of the Zstandard compression algorithm (see MDL-66428).
32 === 3.7 ===
33 * Upgraded MongoDB cache store to use the new lower level PHP-driver and MongoDB PHP Library.
34 * The mongodb extension has replaced the old mongo extension. The mongodb pecl extension >= 1.5 must be installed to use MongoDB
35 cache store.
37 === 3.6 ===
38 * The `cache::now()` function now takes an optional boolean parameter to indicate that the cache should return a more
39   accurate time, generated by the PHP `microtime` function.
40 * The memcache store was removed as it is not compatible with PHP 7.0.
42 === 3.3 ===
43 * Identifiers and invalidation events have been explictly been marked as incompatible and will
44   throw a coding exception. Unexpected results would have occurred if the previous behaviour was attempted.
45 * Identifiers are now part of loaded caches, so identifiers can only be set at cache::make()
46   a coding_exception will be thrown if attempts are made at other times.
47   Multiple calls to cache::make with different identifiers will produce 2 caches instead of changing the
48   keyspace of a single cache.
50 === 3.2 ===
51 * The following methods have been finally deprecated and should no longer be used.
52   - cache_definition::should_be_persistent()
53   - cache_definition::get_persistent_max_size()
54   - cache::is_using_persist_cache()
55   - cache::is_in_persist_cache()
56   - cache::get_from_persist_cache()
57   - cache::set_in_persist_cache()
58   - cache::delete_from_persist_cache()
59   - cache_store::cleanup()
60 * cachestore_dummy::cleanup() has been deprecated.
61 * cachestore_dummy::instance_deleted() implemented in lieu of cachestore_dummy::cleanup().
62 * Added cache_store::unit_test_configuration() to calculate unit testing configuration.
63 * Remove cache_store:initialise_unit_test_instance() as it is incompatible with cache_helper purge functions.
65 === 3.1 ===
66 * Cache stores has a new feature DEREFERENCES_OBJECTS.
67   This allows the cache loader to decide if it needs to handle dereferencing or whether the data
68   coming directly to it has already had references resolved.
69   - see supports_dereferencing_objects in store.php.
71 === 2.9 ===
72 * Cache data source aggregation functionality has been removed. This functionality was found to be broken and unused.
73   It was decided that rather than fixing it it should be removed.
74   As well as the processing code being removed the following API changes have been made.
75   The following changes have come about because of it:
76    - cache_definition::$datasourceaggregate is deprecated an unused.
77    - cache_definition::load Argument 3 (final arg) is now unused.
78    - cache_factory::create_cache_from_definition Argument 4 (final arg) is now unused.
79    - cache::make Argument 4 (final arg) is now unused.
80 * cache_config_phpunittest has been renamed to cache_config_testing
81 * New method cache_store::ready_to_be_used_for_testing() that returns true|false if the store is suitable and ready for use as the primary store during unit and acceptance tests.
82 * cache_helper::get_stats structure we changed to include the cache mode.
84 === 2.7 ===
85 * cache_store::is_ready is no longer abstract, calling cache_store::are_requirements_met by default.
87 === 2.6 ===
88 * All cache instances are recorded and subsequent requests are given a reference to the original instance.
89 * The persistent option for the cache definition has been deprecated. Please use the staticacceleration option instead.
90 * There is a new static acceleration option. If enabled data passing through the cache is held onto.
91 * The persistentmaxsize option has been renamed to staticaccelerationsize. It does the same thing.
92 * cache_definition::should_be_persistent has been deprecated. Please call cache_definition::use_static_acceleration instead.
93 * cache_definition::get_persistent_max_size has been deprecated. Please call cache_definition::get_static_acceleration_size instead.
94 * cache::is_using_persist_cache() has been deprecated. Please call  cache::use_static_acceleration()
95 * cache::is_in_persist_cache() has been deprecated. Please call  cache::static_acceleration_has()
96 * cache::get_from_persist_cache() has been deprecated. Please call  cache::static_acceleration_get()
97 * cache::set_in_persist_cache() has been deprecated. Please call  cache::static_acceleration_set()
98 * cache::delete_from_persist_cache() has been deprecated. Please call cache::static_acceleration_delete()
99 * If you have any custom cache loaders you will need to rename these methods if you have overriden them and adjust any calls you may have made to them.
101 === 2.5 ===
102 * cleanup method renamed to instance_deleted.
103   It is now called when the store is deleted as all comments suggested anyway.
104 * instance_created method added.
105   It is called when the store is created for the very first time.