多个进程写入同一文件(.net/c#)

发布于 2024-07-26 14:40:49 字数 62 浏览 2 评论 0原文

我有多个进程写入同一个日志文件。 我怎样才能同步它们? 我的应用程序是用 C# 编写的 Web 应用程序。

I have several process writing to the same log file. How can I synchronize them? My application is a web application written in c#.

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

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

发布评论

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

评论(2

亢潮 2024-08-02 14:41:24

看一下命名信号量。 我认为他们应该跨流程工作。

System.Threading.Semaphore sem = new System.Threading.Semaphore(0, 1, "FileWriter");

while (sem.WaitOne())
{
    // Do work
    sem.Release();
}

Have a look at named semaphores. I think they should work across processes.

System.Threading.Semaphore sem = new System.Threading.Semaphore(0, 1, "FileWriter");

while (sem.WaitOne())
{
    // Do work
    sem.Release();
}
安人多梦 2024-08-02 14:41:15

我要么让它们登录不同的日志文件,要么开始使用代理进程,将消息记录到各种日志进程的文件中,这样,您只需将消息发送到日志进程,而不是绑定I/O 请求,否则它们也会如此。

或者您可以在文件上使用共享互斥锁。

I would either make them to log in different log files, or start using a proxy process which logs the messages into the file for the various logging processes, that way, you only have to send messages to the logging process and isn't that bound to I/O requests that they would be otherwise too.

Or you can use a shared mutex lock on the file.

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