lnmp架构是现在很常用的,拜读过张晏的博客,内核,php-fpm,nginx,fastcgi进行调优,用autobench压力测试,访问php页面,从100个并发开始,每次加50个,直到1000个并发,pm=static,pm.max_children=128,机器8G内存,CPU是L5520,测...
分类:
Web程序 时间:
2014-07-16 23:16:55
阅读次数:
352
using System;using System.Collections.Generic;using System.Text;using System.IO;namespace MyTool{ public class FileOperator { /// ...
分类:
Web程序 时间:
2014-07-16 23:16:59
阅读次数:
236
1,需要引用命名空间using System.IO.Compression;2,//压缩byte数组方法private byte[] ComPress(byte[] data) { try { MemoryStr...
分类:
Web程序 时间:
2014-07-16 23:17:08
阅读次数:
333
点评:HTML 5 是一个新的网络标准,目标在于取代现有的 HTML 4.01, XHTML 1.0 and DOM Level 2 HTML 标准-它希望能够减少浏览器对于需要插件的丰富性网络应用服务(plug-in-based rich internet application,RIA),如Ad...
分类:
Web程序 时间:
2014-07-16 23:17:31
阅读次数:
273
jQuery分页演示效果 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum consectetur ipsum sit amet urna euismod imperdiet aliquam urna l...
分类:
Web程序 时间:
2014-07-16 23:17:53
阅读次数:
256
上下左右边框交界处呈现平滑的斜线。利用这个特点,通过设置不同的上下左右边框宽度或颜色,可以得到小三角、梯形等。调整宽度大小可以调节三角形形状。实现三角形示例1:#test1{ height:20px; width:20px; border-color:#FF9600 #3366ff...
分类:
Web程序 时间:
2014-07-16 23:18:06
阅读次数:
260
如果你有一个div用来做输出控制台,因为内容是不断增加的,那你自然希望这个div或textarea能永远显示最下面一行:var el = document.getElementById('someid');el.scrollTop = el.scrollHeight;你在setTimeout之类的时...
分类:
Web程序 时间:
2014-07-16 23:18:51
阅读次数:
250
1,限制只能输入数字 private void txtSize_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar != 8 && e.KeyChar != 13 && !char.IsDi...
分类:
Web程序 时间:
2014-07-16 23:18:55
阅读次数:
256
这个是自己用的,不一定符合您的需求。using System;using System.Collections.Generic;using System.Text;using EXDataControl;using System.Data;using System.Data.SqlClient;us...
分类:
Web程序 时间:
2014-07-16 23:19:13
阅读次数:
304
注:此例子只是自己在代码中为了读某固定的几个值,写的有点死,所以另作他用的时候请自行修改或扩充using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using Syste...
分类:
Web程序 时间:
2014-07-16 23:19:18
阅读次数:
316
注:非调用OFFICE的DLL方法。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;u...
分类:
Web程序 时间:
2014-07-16 23:19:22
阅读次数:
352
[本文摘自http://suliuyes.iteye.com/blog/1250444,待整理]freemarker优点:1、不能编写java代码,可以实现严格的mvc分离2、性能非常不错3、对jsp标签支持良好4、内置大量常用功能,使用非常方便5、宏定义(类似jsp标签)非常方便6、使用表达式语言...
分类:
Web程序 时间:
2014-07-16 23:19:49
阅读次数:
478
验证码的实现 protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Session["Vcode"] = ...
分类:
Web程序 时间:
2014-07-16 23:20:29
阅读次数:
258
Js的substring和C#的Substring的作用都是从一个字符串中截取出一个子字符串,但它们的用法却有非常大的不同,下边我们来比較看看:Js的substring语法:程序代码String.substring(start, end)说明:返回一个从start開始到end(不包括end)的子字符...
分类:
Web程序 时间:
2014-07-16 23:20:43
阅读次数:
313
iframe 是一个可以把另外一个网页嵌入到一个网页里的代码,非常有用。对于一个内容不错的网页,要方便地把它搬到自己的博客里,用这个代码最合适。而对于在新浪博客里不支持的一些网页效果和代码,可先把他们设置好,在支持他们的网站上使用,或上传到一个免费的网络空间或网络硬盘里,获取相应的网页地址,然后用 ...
分类:
Web程序 时间:
2014-07-16 23:20:47
阅读次数:
286
linux常用命令ps aux|grep xxx (比如 ps aux|grep tomcat ps aux|grep tomcat-portalvip ps aux|grep nginx 等)rpm -qa|grep xxx (查找系统有没有安装 比如 rpm -qa|grep mysql rpm...
分类:
Web程序 时间:
2014-07-16 23:20:56
阅读次数:
258