使用 Oracle 10g 数据库进行 ASP.NET 会话管理
我正在开发一个网络应用程序。 由于某些原因,我需要使用外部存储来存储会话状态。 由于我使用 Oracle 10g 作为后端数据库,我可以使用相同的 Oracle 10g 数据库来存储会话状态吗?
提前致谢..
I am developing a web application.
For some reasons, I need to use external storage for storing session state.
As I am using Oracle 10g as backend database, can I use same oracle 10g db for storing session state also?
Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想使用内置会话 API,您应该实现自己的 Session-国营商店提供商。 应该不会太难,因为您只需更改存储模型,而不必担心请求的会话状态的获取和释放,这是由内置的会话状态提供程序完成的。
编辑:Oracle 本身似乎提供了一个会话状态的实现,您可以使用它。 http://www.oracle.com/technology/tech/dotnet/ aspnet/index.html
If you want to use the built in session API, you should implement your own Session-State Store Provider. Should not be too hard, since you can change the storage model only, and do not have to worry about acquiring and releasing session state for requests, this is done by the built-in Session state provider.
Edit: It seems that Oracle themselves provides an implementation of Session state, that you could use. http://www.oracle.com/technology/tech/dotnet/aspnet/index.html
是的,这就是 Oracle 自己使用 Application Express Web 应用程序工具所做的事情。 本质上,您只需为每个会话提供一个唯一的会话 ID,然后将所有会话状态记录在如下表中:
Yes, that's what Oracle do themselves with their Application Express web application tool. Essentially you just give each session a unique session ID and then record all session state in a table like this one: