nginx 静态文件处理能力是非常棒的,我们能不能进一步优化呢?静态文件的读取,会损耗IO资源。可以考虑把静态文件转移到linux内存中,每次从内存读取资源,效果应该会好很多。不过,系统重启时,内存文件会自动消失。针对这种情况,我们需要做个shell,在系统重启时,把静态文件拷贝到内存中。

        在给出shell示例之前,先做几个假设。nginx.conf中所配置站点的路径是/home/wwwroot/res,站点所对应文件原始存储路径:/opt/web/res

       开始编写拷贝内存initwebres脚本:

vim /root/.bin/initwebres.sh
脚本内容如下:

#! /bin/bash 

res_path="/opt/web/res"
mem_path="/dev/shm/res"
lk_path="/home/wwwroot/res"

if [ ! -d "$mem_path" ]; then
        cp -r "$res_path" "$mem_path"
fi

if [ ! -L "$lk_path" ]; then
        ln -s "$mem_path" "$lk_path"
fi

      脚本写好之后,需要让脚本自启动。假设bash路径/bin/bash,然后在/etc/rc.local末尾添加:

/bin/bash /root/.bin/initwebres.sh
     通过上述操作,基本搞定一切。不过,更新网站静态文件时,切记要更新内存/dev/shm/中的相应文件哦!
    

     Shell脚本的编写,可以参考以前的blog:   Shell脚本逻辑操作符简介  和 shell脚本比较运算符及逻辑运算符小结

   

Logo

更多推荐