当前位置: 首页 >
2011年8月发布的所有文章
-
DirectAdmin面板下安装Zend Opitimizer教程
cd /usr/local/src mkdir zend cd zend wget http://downloads.zend.com/optimizer/3.3.0a/ZendOptimizer-3.3.0a-linux-glibc21-i386.tar.gz #具体版本可以去官方看或者自己需要哪个版本 tar -xzvf ZendOptimizer-3.3.0a-linux-glibc21-i386.tar.gz cd ZendOptimizer-3.3.0a-linux-* ./install.sh 安装 ...
-
MySQL replace into
if not exists (select 1 from t where id = 1) insert into t(id, update_time) values(1, getdate()) else update t set update_time = getdate() where id = 1 那么 MySQL 中如何实现这样的逻辑呢?别着急!MySQL 中有更简单的方法: replace into replace into t(id, update_time) values(1, now()); 或 r ...