数据库主键性能对比: 测试表:id_int()、 初始化100w条数据的存储过程: 数据插入过程能发现int自增的插入速度明显高出另外两个,uuid()函数调用肯定没有自增快。不过相较于插入,我更关注查询的性能对比 count: 长整形的效率明显高于字符型的 基于主键查询:差别不大 基于name查询 ...
分类:
数据库 时间:
2016-11-12 16:10:32
阅读次数:
534
不管什么开发,环境最重要,第一节课肯定是环境的配置,本文总结了一些较新的 PHP 环境配置 ...
分类:
Web程序 时间:
2016-11-12 11:23:53
阅读次数:
301
delayed ack和nagles算法都能减少tcp传输过程中的小数据包的问题 tcpip卷二25章中提到tcp为每个连接建立7个定时器: 1.connection established 2.restransmission 3.delayed ack(https://en.wikipedia.o ...
分类:
编程语言 时间:
2016-11-12 02:09:03
阅读次数:
309
nodejs第一天 1.0js的模块化 什么是模块化: 模块化的概念最早是后台的,随着ajax技术的兴起,js在编程中所占的地位越来越高,同时js的文件也相应的越来越多。为了方便文件的管理和更新,提出了js文件的模块化,将同一类型的功能组合在一起。 1.1模块化的演变过程: 1.普通的方法的书写格式 ...
分类:
Web程序 时间:
2016-11-12 01:57:33
阅读次数:
210
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. For example,Given 1->2 ...
分类:
其他好文 时间:
2016-11-11 14:58:49
阅读次数:
204
安装ruby cd git clone https://github.com/rbenv/rbenv.git ~/.rbenv echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc echo 'eval "$(rbenv init -)"'... ...
分类:
系统相关 时间:
2016-11-11 14:52:33
阅读次数:
537
1616 最小集合 基准时间限制:1 秒 空间限制:131072 KB 分值: 80 难度:5级算法题 收藏 关注 1616 最小集合 基准时间限制:1 秒 空间限制:131072 KB 分值: 80 难度:5级算法题 1616 最小集合 基准时间限制:1 秒 空间限制:131072 KB 分值: ...
分类:
其他好文 时间:
2016-11-11 09:51:47
阅读次数:
119
The question and solution are from: http://www.geeksforgeeks.org/convert-given-binary-tree-doubly-linked-list-set-3/ Given a Binary Tree (BT), convert ...
分类:
其他好文 时间:
2016-11-11 09:40:19
阅读次数:
201
Hadoop集群的各部分一般都会使用到多个端口,有些是daemon之间进行交互之用,有些是用于RPC访问以及HTTP访问。而随着Hadoop周边组件的增多,完全记不住哪个端口对应哪个应用,特收集记录如此,以便查询。 这里包含我们使用到的组件:HDFS, YARN, HBase, Hive, ZooK ...
分类:
其他好文 时间:
2016-11-11 07:53:24
阅读次数:
170
<!DOCTYPE HTML><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>无标题文档</title><script>window.onload = function() { ...
分类:
Web程序 时间:
2016-11-10 19:46:17
阅读次数:
217