ASP.NET - 会话键值对上的 TTL (InProc)
是否有认可的方法将 TTL 添加到 ASP.NET InProc 会话状态条目?
示例:
Session("First", 60) = "John"
Session("Adams", 500) = "Adams"
Is there a sanctioned method for adding TTL to ASP.NET InProc Session State entries?
Example:
Session("First", 60) = "John"
Session("Adams", 500) = "Adams"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
开箱即用,不,没有。单个会话状态键值对没有任何用于添加 TTL 或 TTE 的内置方法。
关于“全局”InProc 会话状态超时,它由
web.config
文件中配置的会话状态范围值控制(/system.web/sessionState
设置)。此外,虽然创建自己的会话状态提供程序看起来似乎是一个有吸引力的提议,但您无法使用页面或控制器代码公开的
Session
属性,因为这会返回HttpSessionState对象。所有方法、属性或索引器都不支持使用额外参数来指定单个会话值超时。
您可以考虑执行以下操作:
为每个用户维护活动会话:
Session("PersistMe") = true
获取 SessionID,并使用它在 ASP.NET 缓存中存储值,其中您可以使用 TTL 值。
Out of the box, no there isn't. Individual Session State Key-Value-Pairs do not have any built-in method for adding a TTL or TTE.
Regarding the "global" InProc session state-timeout, it is controlled by a session state wide value configured in your
web.config
file (thetimeout
value in the/system.web/sessionState
settings).Additionally, whilst it may look like an attractive proposition to create your own session state provider, you couldn't use the
Session
property exposed by the page or controller code as this returns aHttpSessionState
object. None of the methods, properties or indexers support having an extra parameter to specify individual session value timeouts.You may consider doing the following:
Maintain an active session for each user:
Session("PersistMe") = true
Grab SessionID, and use it to store values in the ASP.NET Cache where you may utilize a TTL value.