|
MediaWiki master
|
Null store backend, used to avoid DB errors during MediaWiki installation. More...
Inherits MediaWiki\Language\LCStore.

Public Member Functions | |||||||
| finishWrite () | |||||||
| Finish a cache write transaction. | |||||||
| get ( $code, $key) | |||||||
| Get a value.
| |||||||
| lateFallback () | |||||||
Can this cache type delay fallback lookups to read time?Returning true will cause the fallbacks to be skipped when recaching data, and instead performed via multiple reads if necessary at runtime.This is best when performing lookups is extremely low-cost, such as LCStoreStaticArray with the lateFallback option.When reading from disk or network, trading off the space for fewer lookups may still be a win. Returning false will keep the classic behavior of pre-filling all the fallback chains for each language. | |||||||
| set ( $key, $value) | |||||||
Set a key to a given value.startWrite() must be called before this is called, and finishWrite() must be called after.
| |||||||
| startWrite ( $code) | |||||||
Start a cache write transaction.
| |||||||
Null store backend, used to avoid DB errors during MediaWiki installation.
Definition at line 14 of file LCStoreNull.php.
| MediaWiki\Language\LCStoreNull::finishWrite | ( | ) |
Finish a cache write transaction.
Implements MediaWiki\Language\LCStore.
Definition at line 25 of file LCStoreNull.php.
| MediaWiki\Language\LCStoreNull::get | ( | $code, | |
| $key ) |
| MediaWiki\Language\LCStoreNull::lateFallback | ( | ) |
Can this cache type delay fallback lookups to read time?Returning true will cause the fallbacks to be skipped when recaching data, and instead performed via multiple reads if necessary at runtime.This is best when performing lookups is extremely low-cost, such as LCStoreStaticArray with the lateFallback option.When reading from disk or network, trading off the space for fewer lookups may still be a win. Returning false will keep the classic behavior of pre-filling all the fallback chains for each language.
Implements MediaWiki\Language\LCStore.
Definition at line 33 of file LCStoreNull.php.
| MediaWiki\Language\LCStoreNull::set | ( | $key, | |
| $value ) |
Set a key to a given value.startWrite() must be called before this is called, and finishWrite() must be called after.
| string | $key | |
| mixed | $value |
Implements MediaWiki\Language\LCStore.
Definition at line 29 of file LCStoreNull.php.
| MediaWiki\Language\LCStoreNull::startWrite | ( | $code | ) |
Start a cache write transaction.
| string | $code | Language code |
Implements MediaWiki\Language\LCStore.
Definition at line 22 of file LCStoreNull.php.