JDK Tools and Utilities 官方 1.6
HBase blog
http://blogs.apache.org/hbase/
http://blog.cloudera.com/blog/category/hbase/
UNIX网络编程 笔记
- 套接字编程介绍
- 基本TCP套接字编程
- TCP客户/服务器程序示例
- I/O复用 select和poll函数
- 套接字选项
- 基本UDP套接字编程
- 名字和地址转换
- 守护进程和inetd超级服务器
- 高级I/O函数
- unix域协议
- 非阻塞式I/O
- ioctl操作
- 路由套接字
- 密钥管理套接字
c语言程序设计 现代方法(第二版2)
读书笔记
网络协议
linux学习笔记
Hadoop笔记汇总
- Hadoop-相关文章
- Hadoop-环境搭建
- Hadoop-常见问题
- Hadoop-常用操作
- Hadoop-commons分析
- Hadoop-balancer执行原理
- Hadoop-远程过程调用
- Hadoop-DataNode分析
- zookeeper笔记
HBase笔记汇总
- HBase-各种API操作
- HBase-线程调整
- Hbase-HMaster架构
- HBase-RegionServer架构
- HBase-客户端请求
- HBase-服务端处理请求的过程
- HBase-HFile分析
- HBase-HFile的读写操作
- HBase-WAL相关线程处理逻辑
- HBase-HLog分析
- HBase-遇到的问题
- HBase-打印日志内容分析
- HBase-压缩和分割原理
- HBase-cache相关
大数据-分布式相关
java相关
从Jetty、Tomcat和Mina中提炼NIO构架网络服务器的经典模式
一个完整的示例,打开一个Selector,注册一个通道注册到这个Selector上(通道的初始化过程略去),然后持续监控这个Selector的四种事件(接受,连接,读,写)是否就绪
Selector selector = Selector.open();
channel.configureBlocking(false);
SelectionKey key = channel.register(selector, SelectionKey.OP_READ);
while(true) {
int readyChannels = selector.select();
if(readyChannels == 0) continue;
Set selectedKeys = selector.selectedKeys();
Iterator keyIterator = selectedKeys.iterator();
while(keyIterator.hasNext()) {
SelectionKey key = keyIterator.next();
if(key.isAcceptable()) {
// a connection was accepted by a ServerSocketChannel.
} else if (key.isConnectable()) {
// a connection was established with a remote server.
} else if (key.isReadable()) {
// a channel is ready for reading
} else if (key.isWritable()) {
// a channel is ready for writing
}
keyIterator.remove();
}
}
编程语言
前端相关
MySql相关
算法汇总
.....
Java堆大小计算法则
| 空间 | 命令行选项 | 占用倍数 |
| Java堆 | -Xms和-Xmx | 3-4倍 FGC后的老年代空间占用量 |
| 新生代 | -Xmn | 1--1.5倍FGC后的老年代空间占用量 |
| 老年代 | -Xmx减去新生代 | 2--3倍FGC后的老年代空间占用量 |
| 持久代 | -XX:PermSize -XX:MaxPermSize | 1.2--1.5倍FGC后的老年代空间占用量 |
yong gc

old gc

以太网帧格式

IP数据报格式

UDP数据格式

TCP数据格式

linux下系统诊断命令
top
dstat
mpstat
iostat
netstat
vmstat
ifstat
sar
nethogs [eth1] 用于查看进程的网络流量
tcpdump
lsof
nc
strace
ss
arp
arping
dig
GC工具
GChisto
GCViewer
算法汇总
计算机科学中的树

| 文件系统 |
|
|---|
| 程序 |
|
|---|
| 使用环境 |
|
|---|
| 文字编辑 |
|
|---|
| Shell 程序 |
|
|---|
| 网络 |
|
|---|
| 搜索 |
|
|---|
| 杂项 |
|
|---|

729

被折叠的 条评论
为什么被折叠?



