排序
PHP获取MySQL执行sql语句的查询时间方法
如下所示: //计时开始 runtime(); //执行查询 mysql_query($sql); //计时结束. echo runtime(1); //计时函数 function runtime($mode=0) { static $t; if(!$mode) { $t = microtime(); return;...
使用JDBC连接Mysql数据库会出现的问题总结
使用JDBC连接Mysql数据库会出现的问题总结。
详解关于MySQL 8.0走过的坑及解决方法
MySQL高效模糊搜索之内置函数locate instr position find_in_set使用详解
MySQL高效模糊搜索之内置函数locate instr position find_in_set使用详解。常用的一共有4个方法
Nginx Gzip模块启用和配置指令详解
Nginx的gzip模块是内置的,在http中添加如下配置: gzip on; gzip_min_length 5k; gzip_buffers 4 16k; gzip_http_version 1.0; gzip_comp_level 3; gzip_types text/pla...
CentOS如何查看当前系统下的gcc版本命令?
1. gcc -v(Display the programs invoked by the compiler) [root@localhost /]# gcc -v Reading specs from /usr/i386-glibc-2.1-linux/lib/gcc-lib/i386-glibc21-linux/egcs-2.91.66/specs ...
Ubuntu常用命令大全,Ubuntu命令使用方法
如何安装Ubuntu系统?Ubuntu操作系统安装使用教程
安装Fedora作为工作环境后的一些配置建议
solaris 10下安装java+tomcat
1. Java安装: 把安装文件j2re-1_4_2_05-solaris-i586.sh上传到目录/export/home下面。 以下内容基于Solaris10实现,如在Solaris8上安装,需提前安装8_Recommended.zip Solaris10自带JDK1.5.0时...