MySQL:

SELECT * FROM EVENT WHERE eventId IN(443,419,431,440,420,414,509)  ORDER BY INSTR(',443,419,431,440,420,414,509,',CONCAT(',',eventId,','))

Oracle:

SELECT NAME FROM order WHERE oderid IN (111,222,333,444,555,666) ORDER BY INSTR('111,222,333,444,555,666',orderid)

首先了解一下 nginx-http-concat,他是一个淘宝的开源Nginx模块,是一个能把多个CSS和JS合并成一个请求的Nginx模块,对于Web性能优化非常有意义。

Github地址:https://github.com/alibaba/nginx-http-concat

先看看淘宝用起来是什么样的,访问淘宝网主页,查看源代码可以看到类似的这样的style/script链接

<link rel="stylesheet" href="//g.tbcdn.cn/??tb/global/2.1.6/global-min.css,tb/tb-fp/1.2.3/style-min.css?t=20130912">
<script src="//g.tbcdn.cn/??kissy/k/1.3.1/seed-min.js,tb/global/2.1.6/global-min.js,tb/tb-fp/1.2.3/core-min.js?t=20130912"></script>

是不是很神奇,只需要一个请求,就可以把需要的CSS/JS文件通过合并的方式把他输出成一个文件(注意,虽然淘宝有min格式的文件,但是这里它仅仅是合并多个文件,而不会自动的对其压缩打包文件)

首先我们先从Git上下载安装它

# 下载
$ git clone git://github.com/alibaba/nginx-http-concat.git

# 移动目录
$ mv nginx-http-concat /usr/local/src/nginx-http-concat

查看原始Nginx版本,这很重要,因为我们需要安装同一个版本来升级数据

# 查看版本号以及配置信息(目录/模块)
$ /usr/local/nginx/sbin/nginx -V
nginx version: nginx/1.3.1
TLS SNI support disabled
configure arguments: --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module

根据查询的版本号下载对应版本的nginx,可以到官方下载指定版本:http://nginx.org/download/
我这里使用的是1.3.1

$ wget nginx-1.3.1.tar.gz
$ tar zxvf nginx-1.3.1.tar.gz
$ cd nginx-1.3.1
#根据上面-V的信息 加入concat模块所在路径 (--add-module=/usr/local/src/nginx-http-concat) 进行编译
$ ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --add-module=/usr/local/src/nginx-http-concat

make之前备份配置文件,防止意外

$ cp -r /usr/local/nginx/conf /root/nginxconf
# 编译安装
$ make && make install

接下来就是配置你的静态服务器conf文件

server {
        listen       80;
        server_name static.dexphp.loc;
        index index.html index.htm;
        root  /mnt/siteroot/static.dexphp.com;
                
        location /static/css/ {
                concat on;
                concat_max_files 20; //最大合并文件数量是20个
        }

        location /status {
                stub_status on;
                access_log   off;
        }

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js)$ {
                expires      off;
        }

        error_log   /mnt/siteroot/wwwlogs/static.dexphp.loc.error.log;
        access_log  /mnt/siteroot/wwwlogs/static.dexphp.loc.access.log;
}

function getMeta(varA, varB) {
    if (typeof varB !== 'undefined') {
        alert(varA + ' width ' + varB + ' height');
    } else {
        var img = new Image();
        img.src = varA;
        img.onload = function() {
            getMeta(this.width, this.height);
        }
    }
}

getMeta("http://snook.ca/files/mootools_83_snookca.png");

Sphinx 官方版本安装

wget http://sphinxsearch.com/files/sphinx-2.0.3-release.tar.gz  
tar zxvf sphinx-2.0.3-release.tar.gz  
./configure --prefix=/usr/local/sphinx --with-mysql  
make && make install  
cd /usr/local/sphinx  
cp etc/sphinx-min.conf.dist etc/sphinx.conf  
测试数据库,新建test数据库,导入etc/example.sql做测试  
#修改mysql帐户密码  
vim etc/sphinx.conf  
#建立索引  
bin/indexer -c etc/sphinx.conf test1  
#查询  
bin/search -c etc/sphinx.conf test  
#开启守护进程  
bin/searchd -c etc/sphinx.conf

官方安装文档 installation-requirement

Centos 选择Redhat系列

wget http://www.phabricator.com/rsrc/install/install_rhel-derivs.sh
$ cd somewhere/ # pick some install directory
somewhere/ $ git clone git://github.com/facebook/libphutil.gitsomewhere/
$ git clone git://github.com/facebook/arcanist.gitsomewhere/
$ git clone git://github.com/facebook/phabricator.git

配置自己的web指定的服务器。

根据提示设置mysql用户名密码,导入数据

phabricator/ $ ./bin/storage upgrade 

通过http访问如果提示 [Exception] Failed to open process 说明proc_open有问题,检查是否开启了php.ini中disable_functions功能是否存在该函数,并且去掉。