Sitecore.Context.Item 是否使用 HttpContext?
Sitecore 是否利用 HttpContext 来保存对数据库的不必要的调用?
专门针对上下文项和数据库?
谢谢
Does Sitecore make use of the HttpContext to save needless calls to the DB?
Specifically for the context item and database?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。看一下 Sitecore.Caching.ItemsContext。它使用 HttpContext.Current.Items 来保存上下文 Item。上下文数据库也在那里。
Yes. Take a look at Sitecore.Caching.ItemsContext. It uses
HttpContext.Current.Items
to save the context Item. The context database is in there as well.