使用数据库实现会话服务器的最佳方法?
我不知道如何在网络农场上维护它。 有人可以告诉我如何使用sqlserver来维护它吗?
I am at a loss how to maintain it on a web farm. Could somebody tell me how to use sqlserver to maintain it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要使用 SQL Server 来维护网络场上的状态 - 您还可以使用 StateServer 模式,该模式MSDN 描述 为:
您可以在 web.config 中轻松进行设置,例如。
注意,要在 Web 场中使用 StateServer 模式,您必须在 Web 配置的 machineKey 元素中为属于该 Web 场的所有应用程序指定相同的加密密钥。网络农场的。
You don't need to use SQL Server to maintain state on a web-farm - you can also use StateServer mode, which MSDN describes as:
You can set-it up easily in web.config eg.
Note, To use StateServer mode in a Web farm, you must have the same encryption keys specified in the machineKey element of your Web configuration for all applications that are part of the Web farm.
要使用 SQL Server,您必须修改会话状态的 web.config 设置以从 InProc 更改它。 然后,您需要创建数据库并进行配置。 这篇文章将引导您完成整个过程。
所以基本上您有几个部分。
To use SQL Server you have to modify the web.config settings for Session state to change it from InProc. You will then need to create the database and configure. THis article walks you through the process.
So basically you have a few parts to it.