简单套接字服务器

发布于 2024-12-02 02:46:25 字数 161 浏览 1 评论 0原文

我使用 logback 的 SimpleSocketServer 类作为守护进程来记录事件。如果一个进程正在记录到守护进程(SimpleSocketServer),那么一切都很好,但是如果两个进程同时开始记录到守护进程,则记录事件要么被跳过,要么从不接收。有没有人处理过 logback 和类似的问题?谢谢。

I am using logback's SimpleSocketServer class as a daemon to log events. If one process is logging to the the daemon(SimpleSocketServer) all is fine, however if two processes begin to log to the daemon at the same time then logging events are either skipped or never received. Has anyone ever dealt with logback and a similar problem? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

轻拂→两袖风尘 2024-12-09 02:46:25

这可能是一个 logback 错误吗?如果您认为是,请输入错误报告。

Can this be a logback bug? If you think it is, please enter a bug report.

嘦怹 2024-12-09 02:46:25

他们的 SocketNode 类犯了一个常见错误,即在其构造函数中执行 I/O 或 DNS 操作,这会阻止创建它的接受循环。所有这些都应该推迟到它的 run() 方法。

Their SocketNode class makes the common mistake of doing I/O or DNS operations in its constructor, which holds up the accept loop that creates it. All that should be deferred to its run() method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文