mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 19:05:34 +08:00
18 lines
333 B
PHP
18 lines
333 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
|
||
interface base_interface_kvstore_base{
|
||
|
||
function store($key, $value, $ttl=0);
|
||
|
||
function fetch($key, &$value, $timeout_version=null);
|
||
|
||
function delete($key);
|
||
|
||
function recovery($record);
|
||
}
|