MySQL数据库InnoDB存储引擎Log漫游http://blog.163.com/zihuan_xuan/blog/static/1287942432012366293667/
分类:
数据库 时间:
2014-05-27 00:34:13
阅读次数:
255
#paip.提升效率---filter map reduce 的java
函数式编程实现========================================================#----------------------index索引------------------++...
分类:
编程语言 时间:
2014-05-23 06:44:58
阅读次数:
431
MyISAM:这个是默认类型,它是基于传统的ISAM类型,ISAM是Indexed
Sequential Access Method (有索引的顺序访问方法)
的缩写,它是存储记录和文件的标准方法.与其他存储引擎比较,MyISAM具有检查和修复表格的大多数工具. MyISAM表格可以被压缩,而且它们...
分类:
数据库 时间:
2014-05-23 06:29:27
阅读次数:
405
上篇实例为图片浏览器是从小说阅读器直接将图片分页替换文本分页,还是双页显示。页面小阅读比较吃力,本篇拟改动几行代码,用全屏显示,看看效果如何。
#pgnumber{position:fixed;font-size:12px;left:200px;height:25px;top:10px;width:200px;z-index:1;} 原top改成10px,也就是从页脚改到页眉,可以动...
分类:
移动开发 时间:
2014-05-23 02:28:51
阅读次数:
397
1、相关资料
官方文档:http://htmlparser.sourceforge.net/samples.html
API:http://htmlparser.sourceforge.net/javadoc/index.html
其它HTML 解释器:jsoup等。由于HtmlParser自2006年以后就再没更新,目前很多人推荐使用jsoup代替它。
2、使...
分类:
Web程序 时间:
2014-05-23 02:16:30
阅读次数:
488
MySQL各种索引(因为是浅析大多都不刻意区分搜索引擎)
INDEX(普通索引):最基本的索引,没有任何限制
ALTER TABLE `table_name` ADD INDEX index_name ( `column` )
UNIQUE(唯一索引):与"普通索引"类似,不同的就是:索引列的值必须唯一,但允许有空值。
ALTER TABLE `table_name` ADD UNIQUE (`column`)
注:创建唯一索引的目的不是为了提高访问速度,而只...
分类:
数据库 时间:
2014-05-23 01:24:44
阅读次数:
313
【题目】
Given an array of non-negative integers, you are initially positioned at the first index of the array.
Each element in the array represents your maximum jump length at that position.
Your goal is to reach the last index in the minimum number of ju...
分类:
其他好文 时间:
2014-05-22 17:02:20
阅读次数:
244
--innodb和myisam存储引擎插入速度------------------------------------2014/05/21MySQL
5.6 全部默认设置,插入数据9999条,性能一般的虚拟机。mysql> delete from test;Query OK, 10000 rows
...
分类:
数据库 时间:
2014-05-22 16:12:53
阅读次数:
295
The start index: this is inclusive, i.e. this
will be the first index value in the loopThe end index: this is exclusive, so it
won’t be processed in t...
分类:
Web程序 时间:
2014-05-22 15:59:26
阅读次数:
264
实际上,您可以把索引理解为一种特殊的目录。微软的SQLSERVER提供了两种索引:聚集索引(clustered
index,也称聚类索引、簇集索引)和非聚集索引(nonclustered
index,也称非聚类索引、非簇集索引)。下面,我们举例来说明一下聚集索引和非聚集索引的区别: 其实,我们的汉语...
分类:
数据库 时间:
2014-05-21 19:07:30
阅读次数:
286