ASP.NET 临时文件文件夹的典型文件大小是多少?

发布于 2024-09-10 22:05:58 字数 313 浏览 5 评论 0原文

我知道这有点像一段字符串有多长问题,但我想知道有些人的 ASP.NET 临时文件文件夹有多大。我希望将此文件夹移动到 RAM 磁盘,因此我想看看应该将其设置为多大。

例如。

这仅适用于我的开发机(以帮助加快编译速度 -> temp crap 转到内存而不是磁盘)。

256MB够大吗?文件上传呢?这些文件(暂时)去哪里?

干杯:)

I know this is a bit like how long is a piece of string question, but I'm wondering how big some peoples ASP.NET Temporary Files folder, gets. I wish to move this folder to a RAM DISK so I'm trying to see how big this should be set, to.

eg. <compilation tempDirectory=“R:\ASP.Net Temporary Folder\” debug=“false“>

This is only for my DEVELOPMENT Machine (to help speed up compiling -> temp crap goes to ram instead of the Disk).

Is 256MB big enough? What about file uploading? where do those files (temporarily) go?

Cheers :)

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

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

发布评论

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

评论(1

奶气 2024-09-17 22:05:58

根据我在网络服务器和许多网站上的经验256 MB 对于一个网站来说已经足够大了。

10 毫克文件(仅限 aspx 和 cs)在临时文件(加上您的bin 目录中的文件)。

我检查了运行许多 asp.net v4 和 v3.5 站点的服务器,并且在非常大的项目上我有高达 40Mg 的临时目录。大多数站点使用 1-4Gb。

上传的文件不会转到此临时文件,而是转到您设置的上传位置。

希望这对您有帮助。

From my experience on my web server and on many sites 256 MB is big enough for one site.

The 10Mg files (only aspx and cs) product about 20-40Mg files on temporary (plus your files on bin directory).

I check my server that runs many asp.net v4 and v3.5 sites and I have temporary dirs up to 40Mg on the very huge projects. Most of the sites use 1-4Gb.

The uploading files not go to this temporary file, but they go where you have set to go on upload.

Hope this help you.

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