MediaWiki REL1_34
LCStore.php
Go to the documentation of this file.
1<?php
38interface LCStore {
39
45 function get( $code, $key );
46
51 function startWrite( $code );
52
56 function finishWrite();
57
64 function set( $key, $value );
65
66}
Interface for the persistence layer of LocalisationCache.
Definition LCStore.php:38
startWrite( $code)
Start a write transaction.
finishWrite()
Finish a write transaction.