阅读 ASP.NET 站点地图
我正在考虑在我的 asp.net 应用程序中使用站点地图。站点地图会以任何方式影响应用程序的性能吗?我的意思是它会被重复读取还是像 web.config 一样仅读取一次并存储在内存中?
I'm thinking of using sitemap in my asp.net application. Will sitemap affect the application's performance in any way, I mean will it be read repeatedly or only once like web.config and stored in memory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅阅读一次站点地图
稍后缓存
only once read sitemap
later cache
假设您要使用XML 站点地图,它将被读取一次。使用 XML 站点地图是采用的最佳实践之一。
有关实施的详细信息,请查看MS 针对 XML 站点地图的建议
Assuming you are going to use an XML site-map it will be read once. Usage of XML sitemap is one of the best-practices to adopt.
For more info on implementing it, check the MS recommendation for XML sitemaps