经典ASP中应用程序对象的大小限制是多少? [英] What is the size limit of the application object in classic asp?

查看:84
本文介绍了经典ASP中应用程序对象的大小限制是多少?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在创建一个使用应用程序对象存储页面的ASP脚本.我心中的问题是此对象是否有大小限制.有人知道吗?

I am creating an ASP script that uses the application object to store the pages. The question in my mind is whether there is a size limit to this object. Anyone know?

推荐答案

应用程序池可以指定工作进程可以分配的最大虚拟内存大小.此设置将影响应用程序对象可以容纳的最大数据大小.

An application pool may specifiy the Maximum virtual memory size that a worker process can allocate. This is setting will affect the maximum size of data that the application object can hold.

如果未指定此设置(或大于2GB),则另一个因素将是该进程是否以32位模式运行.如果是这样,那么无论服务器上有多少内存,您都只能期望在应用程序对象中获得最大1.5GB(如果有).

If this setting is not specified (or is larger than 2GB) then another factor will be whether the process is running in 32 Bit mode. If so then you could only expect to get a maximum of 1.5GB (if that) in the application object regardless of how much memory is present on the server.

在将工作进程作为64位进程运行的64位服务器上,它将消耗尽可能多的RAM和页面文件.

On 64 bit server running the worker process as a 64 bit process it would be able to consume as much RAM and pagefile that it can get.

这篇关于经典ASP中应用程序对象的大小限制是多少?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆