MediaWiki REL1_39
LCStore.php
Go to the documentation of this file.
1<?php
40interface LCStore {
41
47 public function get( $code, $key );
48
53 public function startWrite( $code );
54
58 public function finishWrite();
59
66 public function set( $key, $value );
67
68}
Interface for the persistence layer of LocalisationCache.
Definition LCStore.php:40
startWrite( $code)
Start a write transaction.
finishWrite()
Finish a write transaction.