一、关于wireshark中以太网数据包的最小长度,请看下面的文字:Packet formatA physical Ethernet packet will look like this:PreambleDestination MAC addressSource MAC addressType/Le...
分类:
Web程序 时间:
2014-09-24 00:14:55
阅读次数:
267
原文地址:http://ifeve.com/java-nio-scattergather/Java NIO开始支持scatter/gather,scatter/gather用于描述从Channel(译者注:Channel在中文经常翻译为通道)中读取或者写入到Channel的操作。 分散(scatte...
分类:
编程语言 时间:
2014-09-21 23:38:41
阅读次数:
320
Map:-------分割Reduce:---合并====Batch,ESB: Splite:----分割 Aggert:---合并 Channel----管道BPM Join fork task==========================================都是基于...
分类:
其他好文 时间:
2014-09-21 12:37:40
阅读次数:
206
如果文件是数千兆字节,或者数百万兆字节,将需要并行化这一文件的备份,通常,一个通道只能读一个文件,但是用多段关键字可以改变这一行为:
run {
allocate channel t1 type sbt;
allocate channel t2 type sbt;
allocate channel t3 type sbt;
allocate channel t4 type sbt;...
分类:
数据库 时间:
2014-09-21 11:25:30
阅读次数:
228
Netty3 源码分析 - NIO server接受连接请求过程分析
当服务器端的server Channel绑定某个端口之后,就可以处理来自客户端的连接请求,而且在构建 NioServerSocketChannelFactory
的时候已经生成了对应的 BossPool 和 WorkerPool,前者管理的 NioServerBoss 就是专门用来接受客户端连接的Sele...
分类:
Web程序 时间:
2014-09-19 17:46:06
阅读次数:
306
断断续续理了一下关于channel的一些概念,现在可以把下面的程序理清楚了。1. source code这个程序来自于《Go语言程序设计》 7.2.2 并发的Grep, 程序如下。package mainimport ( "bufio" "bytes" "fmt" "io" ...
分类:
其他好文 时间:
2014-09-19 03:24:25
阅读次数:
304
I spent several hours to figure out some conceptions about channel tonight1. buffered channel and non-buffered channelbuffered channelbufferedchan := ...
分类:
其他好文 时间:
2014-09-19 01:08:44
阅读次数:
256
/**
*获取本地ip
*@return
*/
privateStringgetLocalIpAddress(){
try{
Stringipv4=null;
List<NetworkInterface>nilist=Collections.list(NetworkInterface.getNetworkInterfaces());
for(NetworkInterfaceni:nilist){
List<InetAddress>iali..
分类:
移动开发 时间:
2014-09-18 16:47:14
阅读次数:
205
补充关于内存的一些基础知识,主要是为了理解DPDK,没有涉及太深。
RAM分为SRAM(static random access memory)和DRAM(dynamic random access memory)。
主存DRAM由大至小,由上往下可做以下拆分:channel > DIMM >...
分类:
其他好文 时间:
2014-09-17 01:04:21
阅读次数:
422
A multi-core processor includes logical partitions that have respective processor cores, memory areas, and Ethernet controllers. At least one of the E...
分类:
其他好文 时间:
2014-09-15 22:33:19
阅读次数:
251