MediaWiki master
LCStore.php
Go to the documentation of this file.
1<?php
40interface LCStore {
41
48 public function get( $code, $key );
49
55 public function startWrite( $code );
56
60 public function finishWrite();
61
69 public function set( $key, $value );
70
71}
Interface for the persistence layer of LocalisationCache.
Definition LCStore.php:40
startWrite( $code)
Start a cache write transaction.
finishWrite()
Finish a cache write transaction.