MediaWiki  1.34.0
IStoreKeyEncoder.php
Go to the documentation of this file.
1 <?php
2 
9 interface IStoreKeyEncoder {
17  public function makeGlobalKey( $class, ...$components );
18 
26  public function makeKey( $class, ...$components );
27 }
IStoreKeyEncoder\makeGlobalKey
makeGlobalKey( $class,... $components)
Make a global cache key.
IStoreKeyEncoder\makeKey
makeKey( $class,... $components)
Make a cache key, scoped to this instance's keyspace.
IStoreKeyEncoder
Generic interface for object stores with key encoding methods.
Definition: IStoreKeyEncoder.php:9