嗨,我有一个关于我的服务器性能的问题......我有一个经典的 asp cms 托管约 250 个网站,我们为每个网站构建一个经典的 ASP 字典,使用
set dict = CreateObject("Scripting.Dictionary")
dict.add "test1","Value Test1"
dict.add "test2","Value Test2"
dict.add "test3","Value Test3"
然后为每个用户在每个页面上加载该字典...
假设我们每月有大约 150 000 名用户访问这些网站,每次加载大约 100k 的字典...
我应该使用应用程序变量作为字典而不是每次都加载我的字典吗?
它真的会提高我的服务器性能吗?