原文http://www.peterviola.com/solving-sql-server-high-cpu-with-iis-request-filtering/Top Queries by Total CPU Time当CPU非常高的时候有可能你的条件反射就是重启服务或者回收App Pools...
分类:
数据库 时间:
2015-02-09 15:46:16
阅读次数:
203
Given a collection of intervals, merge all overlapping intervals.For example,Given[1,3],[2,6],[8,10],[15,18],return[1,6],[8,10],[15,18]./** * Definiti...
分类:
其他好文 时间:
2015-02-09 15:44:44
阅读次数:
153
Given a sorted linked list, delete all duplicates such that each element appear onlyonce.For example,Given1->1->2, return1->2.Given1->1->2->3->3, retu...
分类:
其他好文 时间:
2015-02-09 15:44:36
阅读次数:
139
Implement int sqrt(int x).Compute and return the square root of x.example:sqrt(3) = 1sqrt(4) = 2sqrt(5) = 2sqrt(10) = 3challenge:O(log(x))we start wit...
分类:
其他好文 时间:
2015-02-09 15:44:51
阅读次数:
194
案例1、自己的上一家公司 上家公司我只待了4个月就跳槽了,有人可能觉得我也太不靠谱了,干这么短时间。其实原因有好多,最客观的因素是我的项目经理的做事风格不那么的光明磊落。因为公司不太正规,所以我在上班的第二天就让我出差了并告诉我也就是去2周左右(我在外面待了2个月),来到出差地,迎接我的是项目经理....
分类:
其他好文 时间:
2015-02-09 15:46:19
阅读次数:
153
from:http://blog.chinaunix.net/uid-25890465-id-3312861.html一、ConfigParser简介ConfigParser 是用来读取配置文件的包。配置文件的格式如下:中括号“[ ]”内包含的为section。section 下面为类似于key-v...
分类:
编程语言 时间:
2015-02-09 15:44:48
阅读次数:
291
Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, wh...
分类:
其他好文 时间:
2015-02-09 15:45:22
阅读次数:
126
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.For example,Given1->2->3-...
分类:
其他好文 时间:
2015-02-09 15:44:08
阅读次数:
112
初试seajs,为下次项目的实战做准备:html:seajsDemo.html seajsdemo 使用seajs加载js 内容 js:app.js/***seajs入口*调用其他程序*/define(["jQuery"],function(req...
分类:
Web程序 时间:
2015-02-09 15:42:22
阅读次数:
208
shell中截取字符串的方法有很多中,${expression}一共有9种使用方法。${parameter:-word}${parameter:=word}${parameter:?word}${parameter:+word} 上面4种可以用来进行缺省值的替换。${#parameter}上面这种可...
分类:
系统相关 时间:
2015-02-09 15:42:55
阅读次数:
146
二、ReSHarper 代码规范、单元测试....ReSharper的功能真的很强大,主要是针对代码规范和优化,园子里介绍的也不少,如果你没有安装,那我只能表示你们会相见恨晚!1.像命名不规范,foreach转化为linq,用var来命名,出名的Ctrl+alt+Enter 自动修改,清除多余的变量...
分类:
其他好文 时间:
2015-02-09 15:41:55
阅读次数:
200
1.安全性测试(1)必须测试有效和无效的用户名和密码,要注意到是否大小写敏感,可以试多少次的限制,是否可以不登陆而直接浏览某个页面等。 (2)Web应用系统是否有超时的限制,也就是说,用户登陆后在一定时间内(例如15分钟)没有点击任何页面,是否需要重新登陆才能正常使用。 (3)为了保证Web应用系统...
分类:
Web程序 时间:
2015-02-09 15:44:08
阅读次数:
180
本人收集的,挺有用的1. 利用游标循环更新、删除MemberAccount表中的数据DECLARE My_Cursor CURSOR --定义游标FOR (SELECT * FROM dbo.MemberAccount) --查出需要的集合放到游标中OPEN My_Cursor; --打开游标FET...
分类:
数据库 时间:
2015-02-09 15:43:56
阅读次数:
1029
1)创建队列表CREATE DATABASE gearman;CREATE TABLE `gearman_queue` (`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,`unique_key` VARCHAR(64) NOT NULL,`function...
分类:
其他好文 时间:
2015-02-09 15:43:57
阅读次数:
127
原文网址:http://blog.csdn.net/hongszh/article/details/8608781最强大的定时器接口来自POSIX时钟系列,其创建、初始化以及删除一个定时器的行动被分为三个不同的函数:timer_create()(创建定时器)、timer_settime()(初始化定...
分类:
系统相关 时间:
2015-02-09 15:42:19
阅读次数:
263