多个进程写入同一文件(.net/c#)
我有多个进程写入同一个日志文件。 我怎样才能同步它们? 我的应用程序是用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下命名信号量。 我认为他们应该跨流程工作。
Have a look at named semaphores. I think they should work across processes.
我要么让它们登录不同的日志文件,要么开始使用代理进程,将消息记录到各种日志进程的文件中,这样,您只需将消息发送到日志进程,而不是绑定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.