码迷,mamicode.com
首页 > Web开发 > 详细

php定时执行sphinx的增量索引

时间:2015-05-11 12:12:11      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

/**
     * 每天定时执行的sphinx索引增量更新
     * @author guo.jing
     * 2015-05-08
     * @param $indexerArr(执行要更新的索引)
     */
    public function updateCoreseekIndexer($indexerArr = array()) {
        if ($indexerArr) {
            foreach ($indexerArr as $indexerName) {
                shell_exec(‘sudo -S sh ‘ . CORESEEK_SH_DIR."coreseek_rebuild.sh " . $indexerName.‘ 2> /tmp/error.txt‘);
            }
        }
    }

 sh文件内容:

#!/bin/sh
#/usr/local/coreseek/bin/searchd -c /etc/csft.conf --stop
/usr/local/coreseek/bin/indexer -c /etc/csft.conf $1 --rotate

php定时执行sphinx的增量索引

标签:

原文地址:http://www.cnblogs.com/xingmeng/p/4493856.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!