数据优化插件用于加速cms运行效率以及对数据库查询的优化,避免无用查询的存在同时提高网站的访问效率。
一、缓存配置
判断系统是否开启缓存配置来加速php程序运行效率。
1、文件缓存
是默认程序缓存,只需要开启cache/目录的可写入权限即可打开此缓存。
2、Memcached缓存
配置文件config/memcached.php
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $config = array( 'default' => array( 'hostname' => '127.0.0.1', 'port' => '11211', 'weight' => '1', ), );
3、Redis 配置
配置文件config/redis.php
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $config['socket_type'] = 'tcp'; //`tcp` or `unix` $config['socket'] = '/var/run/redis.sock'; // in case of `unix` socket type $config['host'] = '127.0.0.1'; $config['password'] = NULL; $config['port'] = 6379; $config['timeout'] = 0;
二、页面标签执行效率
通过开发者自己在模板页面上设计的list查询标签来分析mysql效率问题以及优化建议
文档最后更新时间:2018-05-28 13:04:29