本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
JS 1, 11, 21, 1211, 111221 找规律
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>JS 1, 11, 21, 1211, 111221 找规律</title>
</head>
<body>
...
cocos-2d 跨平台GB2312转UTF8
android默认的字体是GB2312,在xcode中,转换成UFT-8
char* HelloWorld::G2U(const char* gb2312)
{
int len = MultiByteToWideChar(CP_ACP, 0, gb2312, -1, NULL, 0);
wchar_t* wstr = new wchar_t[len+1];
memset(ws ...
Oracle性能优化(一) 关注指标及复合索引原理设计
指标
:
对sql语句进行分析,需要关注的指标字至少包括以下几个:
1.消耗时间:包括Elapsed Time 、CPU Time等时间指标
2.内存消耗:包括Buffer Gets、Consistant Gets等指标
3.IO消耗:包括Physical Reads、Physical Writes等指标
4.语句分析次数:包括Parses、Hard Parses、Soft Parses ...