ASP.NET 临时文件文件夹的典型文件大小是多少?
我知道这有点像一段字符串有多长问题,但我想知道有些人的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据我在网络服务器和许多网站上的经验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.