No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

extra_cache_key.php 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. // 整站cache缓存key键值存放处,统一管理
  14. // 注意:键名要唯一,不然会出现缓存错乱。
  15. // 参考格式如下:
  16. // 格式:模块_控制器_操作名[_序号]
  17. // 1、中括号的序号可选,在同一个操作名内用于区分开。
  18. // 2、键名不区分大写小写,要注意大小写,系统自己转为小写处理在md5()加密处理。
  19. $cache_prefix = \think\Config::get('cache.prefix');
  20. return array(
  21. /* -------------------------全局使用------------------------- */
  22. 'global_get_region_list' => array(
  23. 'tag'=>'region', 'options'=>array('expire'=>0, 'prefix'=>$cache_prefix)
  24. ),
  25. 'global_get_province_list' => array(
  26. 'tag'=>'region', 'options'=>array('expire'=>0, 'prefix'=>$cache_prefix)
  27. ),
  28. 'global_get_city_list' => array(
  29. 'tag'=>'region', 'options'=>array('expire'=>0, 'prefix'=>$cache_prefix)
  30. ),
  31. 'global_get_area_list' => array(
  32. 'tag'=>'region', 'options'=>array('expire'=>0, 'prefix'=>$cache_prefix)
  33. ),
  34. 'global_get_citysite_list' => array(
  35. 'tag'=>'citysite', 'options'=>array('expire'=>0, 'prefix'=>$cache_prefix)
  36. ),
  37. 'global_get_site_province_list' => array(
  38. 'tag'=>'citysite', 'options'=>array('expire'=>0, 'prefix'=>$cache_prefix)
  39. ),
  40. 'global_get_site_city_list' => array(
  41. 'tag'=>'citysite', 'options'=>array('expire'=>0, 'prefix'=>$cache_prefix)
  42. ),
  43. 'global_get_site_area_list' => array(
  44. 'tag'=>'citysite', 'options'=>array('expire'=>0, 'prefix'=>$cache_prefix)
  45. ),
  46. /* -------------------------数据表数据缓存------------------------- */
  47. 'table_arctype' => array(
  48. 'tag'=>'arctype', 'options'=>array('expire'=>0, 'prefix'=>$cache_prefix)
  49. ),
  50. /* -------------------------前台使用------------------------- */
  51. // 'home_base_global_assign' => array(
  52. // 'tag'=>'home_base', 'options'=>array('expire'=>43200, 'prefix'=>$cache_prefix)
  53. // ),
  54. /* -------------------------后台使用------------------------- */
  55. 'admin_all_menu' => array(
  56. 'tag'=>'admin_common', 'options'=>array('expire'=>43200, 'prefix'=>$cache_prefix)
  57. ),
  58. 'admin_auth_role_list_logic' => array(
  59. 'tag'=>'admin_logic', 'options'=>array('expire'=>-1, 'prefix'=>$cache_prefix)
  60. ),
  61. 'admin_auth_modular_list_logic' => array(
  62. 'tag'=>'admin_logic', 'options'=>array('expire'=>-1, 'prefix'=>$cache_prefix)
  63. ),
  64. 'admin_channeltype_list_logic' => array(
  65. 'tag'=>'admin_logic', 'options'=>array('expire'=>86400, 'prefix'=>$cache_prefix)
  66. ),
  67. );