File.WriteAllText和IIS并发访问

时间:2012-07-23 01:19:59

标签: c# iis concurrency

我每隔10分钟从控制台应用程序写一个200k JSON文件到IIS框的Web文件夹。移动客户端定期通过IIS从该文件中获取数据。

想知道如果IIS在写入时遇到文件会发生什么。 This问题说File.WriteAllText使用FileShare.Read - 所以有人可以在写入时可以阅读它。

我将使用v。大文件测试它,看看IIS如何在写入过程中处理请求。我记得UNIX中的一个技巧是写入版本文件json.201207231033并将符号链接更新为json

有没有其他人有这方面的经验?

1 个答案:

答案 0 :(得分:1)

以下是我将如何使用ASP.NET页面中的以下伪代码解决您的问题。您将把结果缓存到内存中,并在缓存超过10分钟时刷新数据。

    var data = Cache["data"];
    if (data.Timestamp <= 
        DateTime.Now.Substract(TimeSpan.FromMinutes(10)))
    {
            //Refresh cache with new data when it's older than 10min.
            // You could hypothetically do this in a separate thread
            // if you wanted to do so.      
            data = new Data(GetFromDb(), timestamp);
            Cache["data"] = data;

            return Cache["data"];
    }
    else
    {
            //Use existing data
            return Cache["data"];
    }            

以下是有关如何使用IIS runtime cache

的参考资料

如果您想确保缓存的值始终是新鲜的,那么您可以创建一个每10分钟访问此页面的作业,而不是当前解决方案的方法。

您可以通过许多其他方式了解caching数据,但使用操作系统文件系统并不是最佳选择。