What is the correct way of doing Java IPC through /dev/shm (with the lowest possible latency)(通过/dev/shm执行Java IPC的正确方式是什么(具有尽可能低的延迟))
问题描述
我正在尝试通过/dev/shm
编写IPC解决方案。
@SK-logic在这里的评论中给了我一些指示:Chronicle: How to optimize memory-mapped files for low-latency?
我的疑问是:我应该使用MappedByteBuffer
还是只使用普通的FileChannel
?
通过MappedByteBuffer
,我可以使用sun.misc.Unsafe
并可以直接访问内存。这很棒,因为Unsafe
提供了像getLongVolatile
(除了getLong
)和putLongVolatile
(除了putLong
)这样的方法。如果我使用普通的FileChannel
,这可能吗?如何避免从FileChannel
读取FileChannel
从CPU缓存中读取缓存数据?对于/dev/shm
中的易失性读写,我是否必须在操作系统中配置某些内容?什么?哪里?如何?:)
/dev/shm
执行Java IPC的正确方式是什么?普通文件频道?MappdByteBuffer?
下面我如何通过sun.misc.Unsafe
获取指向内存的指针:
try {
this.raf = new RandomAccessFile(file, "rw");
this.fileChannel = raf.getChannel();
this.mappedBuffer = this.fileChannel.map(MapMode.READ_WRITE, 0, size);
} catch (Exception e) {
throw new RuntimeException("Could not mmap file to memory: " + filename + " " + size, e);
}
try {
addressField = Buffer.class.getDeclaredField("address");
addressField.setAccessible(true);
this.pointer = (long) addressField.get(this.mappedBuffer);
} catch(Exception e) {
throw new RuntimeException("Could not get off-heap pointer!", e);
}
推荐答案
历史记录队列使用Unsafe
对堆和直接内存进行线程安全内存访问。
与其自己编写所有这些内容,为什么不尝试使用编年史地图或队列来为您完成这些工作呢?
这篇关于通过/dev/shm执行Java IPC的正确方式是什么(具有尽可能低的延迟)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:通过/dev/shm执行Java IPC的正确方式是什么(具有尽可能低的延迟)
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 转换 ldap 日期 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 获取数字的最后一位 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01