Docker打包优化

老高最近快被工作掩埋了,各种赶上线,各种修BUG,真凄惨! 今天来说说Docker打包的优化问题。为什么要说这个问题呢?请听我慢慢道来。 ...

April 1, 2016 · 2 min · Me

大流量网站怎么优化

最近面试总是多多少少会出现这个问题,虽然老高的网站流量不大,但是如果解决这个问题,但是在理论上还是能回答的。 首先能够明确的是,一般问这个问题的人应该没听过C10K这个问题吧,注意修饰词一般。所以你有挺高的概率不需要从更底层的回答这个问题,比如多线程和多进程的取舍,或者使用异步和非阻塞等等。。。不过老高还是建议你去了解一下C10K这个概念!这个地方有原文点我,这个地方有翻译点我 这个问题回答的方式,出发点很多。老高认为这样回答比较好: ...

August 24, 2015 · 1 min · Me

nginx的优化配置

老高的服务器最近表示亚历山大,先祭出此篇缓解前端压力,之后再从代码中优化一下。 ...

May 19, 2015 · 2 min · Me

使用net_speeder加速你的VPS

转自:http://www.im1987.com/post/853.html 老高安装了以后480P是不卡了,720P还是有点力不从心啊~ 另外推荐一下锐速,应该还是会有一点效果的。 ...

January 5, 2015 · 2 min · Me

CentOS精简命令

删除自带web、数据库、php yum remove httpd* php* mysql-server mysql* php-mysql -y 删除不需要的程序 yum remove Deployment_Guide-en-US finger cups-libs cups ypbind bluez-libs desktop-file-utils ppp rp-pppoe wireless-tools irda-utils sendmail* samba* talk-server finger-server bind* xinetd nfs-utils nfs-utils-lib rdate fetchmail eject ksh mkbootdisk mtools syslinux tcsh startup-notification talk apmd rmt dump setserial portmap yp-tools -y yum groupremove "Mail Server" "Games and Entertainment" "X Window System" "X Software Development" "Development Libraries" "Dialup Networking Support" "Games and Entertainment" "Sound and Video" "Graphics" "Editors" "Text-based Internet" "GNOME Desktop Environment" "GNOME Software Development" -y yum -y groupremove "FTP Server" "PostgreSQL Database client" "PostgreSQL Database server" "MySQL Database server" "MySQL Database client" "Web Server" "Office Suite and Productivity" "E-mail server" "Ruby Support" "Printing client" 关闭selinux...

September 19, 2014 · 3 min · Me

centos6-优化脚本与安全脚本

新装的机子执行一下,请酌情使用,出问题后果自负。 优化设置 This script is only for 64bit Operating System ! 64位系统专用,老高有修改 #!/bin/bash #author suzezhi #this script is only for CentOS 6 #check the OS platform=`uname -i` if [ $platform != "x86_64" ];then echo "this script is only for 64bit Operating System !" exit 1 fi echo "the platform is ok" version=`lsb_release -r |awk '{print substr($2,1,1)}'` if [ $version != 6 ];then echo "this script is only for CentOS 6 !...

May 13, 2014 · 6 min · Me