# FireCacheK **Repository Path**: ownfire/FireCacheK ## Basic Information - **Project Name**: FireCacheK - **Description**: 缓存键管理 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-12-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 缓存键管理 Parser::init([ 'routePath'=>__DIR__.'/demo', 'debug'=>true, 'runtimePath'=>__DIR__.'/runtime', 'prefix'=>'FireCachek:', 'cache'=>'file', //'v'=>mt_rand(), ]); echo Parser::key('room/list/best',1); echo Parser::key('room/list/best',array(1)); echo Parser::key('room/list/best',array('app'=>1)); //扫描日志并持久化 Disposer::init([ 'routePath'=>__DIR__.'/demo', 'dataPath'=>dirname(__DIR__).'/data', ]); Disposer::begin(false);