/proc/sys/net/unix/max_dgram_qlen
这个设置的是队列数量,也就是dgram模式下,单位世界内能够发送消息的个数?
并不是指单个消息的大小吧?
比如使用unix socket进行ipc,client每秒发送1000个消息,server每秒处理100个,nonblock模式
调整 /proc/sys/net/unix/max_dgram_qlen 可以拖延发送失败的到来是么?
补充下官网的解释
2. /proc/sys/net/unix - Parameters for Unix domain sockets?
There is only one file in this directory. unix_dgram_qlen limits the max number of datagrams queued in Unix domain socket’s buffer. It will not take effect unless PF_UNIX flag is specified.
有人调整过这个参数吗,比如改成65536?
linux挺多应用使用这个ipc的,比如syslog,dbus,
--
修改:b0207191 FROM 120.39.36.*
FROM 120.39.36.*