windows 中的 Netty 零拷贝
Netty Zero-copy in windows
1)Netty的零拷贝是在windows7上工作的吗?
2)有没有人有Netty的客户端-服务器零拷贝用法的例子?
3)我也找到了使用FileChannel实现零拷贝的例子,netty实现和java.nio.channels.FileChannel实现有什么区别?
只需使用 DefaultFileRegion
,它应该可以在 Linux/MacOS/Windows 上运行。这使得内部使用 FileChannel.
.
类似于:
FileRegion region = new DefaultFileRegion(...);
channel.writeAndFlush(region);
1)Netty的零拷贝是在windows7上工作的吗?
2)有没有人有Netty的客户端-服务器零拷贝用法的例子?
3)我也找到了使用FileChannel实现零拷贝的例子,netty实现和java.nio.channels.FileChannel实现有什么区别?
只需使用 DefaultFileRegion
,它应该可以在 Linux/MacOS/Windows 上运行。这使得内部使用 FileChannel.
.
类似于:
FileRegion region = new DefaultFileRegion(...);
channel.writeAndFlush(region);