摘要: http://google-styleguide.googlecode.com/svn/trunk/javaguide.htmlhttp://www.oracle.com/technetwork/java/javase/documentation/codeconvtoc-136057.html 阅读全文
posted @ 2014-02-16 22:29 一天不进步,就是退步 阅读(174) 评论(0) 推荐(0) 编辑
摘要: MySQL索引背后的数据结构及算法原理作者 张洋 | 发布于 2011-10-18MySQL索引B树优化原文地址:http://blog.codinglabs.org/articles/theory-of-mysql-index.html摘要本文以MySQL数据库为研究对象,讨论与数据库索引相关的一些话题。特别需要说明的是,MySQL支持诸多存储引擎,而各种存储引擎对索引的支持也各不相同,因此MySQL数据库支持多种索引类型,如BTree索引,哈希索引,全文索引等等。为了避免混乱,本文将只关注于BTree索引,因为这是平常使用MySQL时主要打交道的索引,至于哈希索引和全文索引本文暂不讨论。文 阅读全文
posted @ 2014-02-16 21:36 一天不进步,就是退步 阅读(297) 评论(0) 推荐(0) 编辑
摘要: byRAMESH NATARAJANonFEBRUARY 29, 2012http://www.thegeekstuff.com/2012/02/dig-command-examples/Dig stands for domain information groper.Using dig command you can query DNS name servers for your DNS lookup related tasks. This article explains 10 examples on how to use dig command.1. Simple dig Command 阅读全文
posted @ 2014-02-16 21:06 一天不进步,就是退步 阅读(399) 评论(0) 推荐(0) 编辑
摘要: Serializationis the process of saving an object's state to a sequence of bytes;deserializationis the process of rebuilding those bytes into a live object. The Java Serialization API provides a standard mechanism for developers to handle object serialization. In this tip, you will see how to seri 阅读全文
posted @ 2014-02-16 17:53 一天不进步,就是退步 阅读(358) 评论(0) 推荐(0) 编辑