在我非常简单的网络应用程序的 web.config 中,我有代码:
<sessionState
cookieless="false" regenerateExpiredSessionId="true" mode="Custom"
customProvider="NCacheSessionProvider" timeout="20">
<providers>
<add
name="NCacheSessionProvider"
type="Alachisoft.NCacheExpress.Web.SessionState.NSessionStoreProvider"
sessionAppId="NCacheTest"
cacheName="myreplicatedcache"
writeExceptionsToEventLog="false"
enableLogs="false"
/>
</providers>
</sessionState>
我一次将 1000 个字节 [1024] 对象添加到 Session[] 中,使用:
for (int count = 0; count < total; count++)
Session[DateTime.Now.Ticks + "_" + count] = new byte[size];
然而,当我在 NCache 上检查命令行统计信息时,我得到的只是:
Cache-ID: myreplicatedcache
Scheme: replicated-server
Status: Running
Cluster size: 2
bibble1:8700
bibble2:8700
UpTime: 26/05/2010 13:23:09
Capacity: 200 MB
Count: 1
Cache-ID: mycache
Scheme: local
Status: Stopped
虽然 addtestdata.exe myreplicatedcache /c 1000 /s 1024 增加了很多。
但是,我的对象在会话中仍然可用。
有人可以告诉我发生了什么吗?
谢谢,
马特。