Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们想(连续)在一台 linux 机器上写入日志文件,并在另一台机器上连续读取它。我们正在寻找低延迟更新(这是用于实时绘图)和简单的设置。实现这一目标的最佳方法是什么?
我已经对 nfs、sshfs 和 tail -f 进行了修改,但更新的频率仅为 1Hz。我假设这些文件系统不支持 select 系统调用,因此以内部速率进行最高轮询。
这听起来像是一个糟糕的架构选择。
是用于 RPC 吗?如果是这样,你为什么不创建一个网络服务?
如果只是为了传输数据,试试memcached。