2020-01-17 11:29:17 +08:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @filename CacheKeys.php
|
|
|
|
* @createdAt 2020/1/17
|
|
|
|
* @project https://github.com/yanwenwu/catch-admin
|
|
|
|
* @document http://doc.catchadmin.com
|
|
|
|
* @author JaguarJack <njphper@gmail.com>
|
|
|
|
* @copyright By CatchAdmin
|
|
|
|
* @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
|
|
|
|
*/
|
|
|
|
namespace catcher;
|
|
|
|
|
|
|
|
class CatchCacheKeys
|
|
|
|
{
|
|
|
|
public const USER_PERMISSIONS = 'user_permissions_';
|
2020-06-17 23:02:12 +08:00
|
|
|
|
|
|
|
public const TRIE_TREE = 'trie_tree';
|
2020-01-17 11:29:17 +08:00
|
|
|
}
|