在做产品的某个核心模块的性能优化时,发现压到100并发时应用服务器的CPU就飙升至90%以上,50并发以后TPS就基本定格在一个数值上。使用性能监视器收集应用服务器的数据,发现每秒的.NET CLR Exceptions数据特别高,且异常数量与CPU使用率的曲线呈正比例的关系。 并发测试的业务结果....
分类:
数据库 时间:
2015-06-15 21:53:38
阅读次数:
222
在项目中对TFS进行备份操作是日常重要的工作之一,此篇主要描述如何对TFS Express进行备份,并且在另外一台服务器上进行恢复。
分类:
Web程序 时间:
2015-06-15 21:53:28
阅读次数:
125
23333......简单的并查集模板。就是被并查集递归式路径压缩RE坑过。。。学习一下非递归式路径压缩。附代码:#include#include#include#define maxn 30100using namespace std;int fa[maxn];int n, m, k;void i...
分类:
其他好文 时间:
2015-06-15 21:51:55
阅读次数:
99
https://github.com/eltld/MaterialImageLoading
分类:
其他好文 时间:
2015-06-15 21:51:24
阅读次数:
81
Implement the following operations of a stack using queues.push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top()...
分类:
编程语言 时间:
2015-06-15 21:52:13
阅读次数:
131
1 环境准备VS2010、下载log4net.dll2 注意LogHelper.cs文件中加载log4net.config的路径需要写成自己的路径System.IO.FileInfo file = new System.IO.FileInfo(Path.Combine(Path.GetDirecto...
分类:
Web程序 时间:
2015-06-15 21:50:34
阅读次数:
125
Toast显示的时间最长是5S,有时候需要显示的时间更长;Toast默认背景是黑色的,有时候希望它更炫酷;所以,你需要自定义Toast。那么,怎么去自定义呢?找到系统Toast源代码抽出来,依葫芦画瓢!分两步: 1.获取Toast的对象:获取toast里面需要填充的view对象 2.显示to...
分类:
其他好文 时间:
2015-06-15 21:53:35
阅读次数:
235
https://github.com/eltld/CircleIndicator
分类:
其他好文 时间:
2015-06-15 21:52:30
阅读次数:
76
Android的界面是有布局和组件协同完成的,布局好比是建筑里的框架,而组件则相当于建筑里的砖瓦。组件按照布局的要求依次排列,就组成了用户所看见的界面。 所有的布局方式都可以归类为ViewGroup的5个类别,即ViewGroup的5个直接子类。其它的一些布局都扩展自这5个类。1.Linea...
分类:
移动开发 时间:
2015-06-15 21:51:12
阅读次数:
115
字符串内建操作字符串长度大小写变换去空格或其他连接字符串查找替换分割判断内建操作字符串长度len代码s = 'abcd'print len(s)大小写变换lower 小写upper 大写swapcase 大小写互换capiatlize 首字母大写代码s = 'aBcd'print s.lower()...
分类:
编程语言 时间:
2015-06-15 21:49:41
阅读次数:
202
https://github.com/eltld/PagerSlidingTabStriphttps://github.com/ghahramani/viewpager
分类:
其他好文 时间:
2015-06-15 21:52:27
阅读次数:
91
Description:Consider equations having the following form: a*x1*x1 + b*x2*x2 + c*x3*x3 + d*x4*x4 = 0 a, b, c, d are integers from the interval [-50,50]...
分类:
其他好文 时间:
2015-06-15 21:49:30
阅读次数:
83
今天用VS2013新建了一个工程,生成时出现很多怪异的链接错误,比如:error LNK2019: unresolved external symbol "__declspec(dllimport) public: static class MTString __cdecl MTString::fr...
分类:
其他好文 时间:
2015-06-15 21:51:38
阅读次数:
104
root:只包含xx对象excludeProperties :除了xx之外的集合includeProperties : 包含xx的集合wrapPrefix :json结果开头添加xx(比如[)wrapSuffix :同上,只不过是结尾ignoreHierarchy :转化时是否忽略继承关系true....
分类:
Web程序 时间:
2015-06-15 21:49:37
阅读次数:
116
今天看到一道题目,感觉挺简单的,顺便看下作者的答案,如下。去除重复字符并排序运行时间限制:无限制内容限制: 无限制输入: 字符串输出: 去除重复字符并排序的字符串样例输入: aabcdefff样例输出: abcdef答案 1 public void dele...
分类:
其他好文 时间:
2015-06-15 21:49:55
阅读次数:
98
https://github.com/eltld/android-auto-scroll-view-pager
分类:
移动开发 时间:
2015-06-15 21:51:17
阅读次数:
110