mirror of
https://github.com/MoePlayer/APlayer-Typecho.git
synced 2025-03-21 21:00:22 +08:00
9 lines
180 B
PHP
9 lines
180 B
PHP
<?php
|
|
interface MetingCacheI
|
|
{
|
|
public function install();
|
|
public function set($key, $value, $expire = 86400);
|
|
public function get($key);
|
|
public function flush();
|
|
}
|