最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > Magento > Magento教程 >

Magento缓存与全局配置文件缓存(3)

时间:2014-06-02 07:38来源:未知 作者:最模板zuimoban 点击:
$options的中的值根据不同存储类型会不同(还受到配置中是否给出backend_options配置的影响),可以推导出配置结构: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

$options的中的值根据不同存储类型会不同(还受到配置中是否给出backend_options配置的影响),可以推导出配置结构:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<global>
    <cache>
        <backend></backend>
        <backend_options>
                        <memcached>只有backend为memcached时</memcached>
                </backend_options>
 
                <auto_refresh_fast_cache><auto_refresh_fast_cache>
                <slow_backend><slow_backend>
                <slow_backend_options><slow_backend_options>
                <slow_backend_store_data><slow_backend_store_data>
                <cache_db_complete_path>只有backend为sqlite时</ cache_db_complete_path/>
                <slow_backend_store_data>只有backend为database时</slow_backend_store_data>
 
                <frontend_options>
                <caching>不设置默认为true</caching>
                    <lifetime>不设置默认是7200</lifetime>
                    <automatic_cleaning_factor>不设置默认为0</automatic_cleaning_factor>
                </frontend_options>
        </cache>
</global>

如果类型是memcached时,backend_options应该需要提供memcached节点。

注意_getBackendOptions函数返回$backendOptions前,还经过了_getTwoLevelsBackendOptions方法的处理(除了类型是File和Database时),所以最终返回的数据:

1
2
3
4
5
6
7
8
9
10
11
$options['fast_backend'] //存储类型,根据backend节点转换而来
$options['fast_backend_options'] //只有backend节点为database和memcached时有内容
$options['fast_backend_custom_naming']  = true;
$options['fast_backend_autoload']       = true;
$options['slow_backend_custom_naming']  = true;
$options['slow_backend_autoload']       = true;
 
$options['auto_refresh_fast_cache']  //来自auto_refresh_fast_cache节点,否则为false
$options['slow_backend'] //来自slow_backend节点,否则为File
$options['slow_backend_options'] // 来自slow_backend_options节点,否则为默认
$options['slow_backend_options']['store_data']//来自slow_backend_store_data,只有backend是database时,不过看起来它不可进入
(责任编辑:最模板)
------分隔线----------------------------
栏目列表
推荐内容