ASP.NET MVC 中的 XML 反序列化性能
我有一个 MVC 2 Web 应用程序,该应用程序将拥有大量用户。特别是一页将基于数据库表中的 XML 进行呈现。我希望使用反序列化将 XML 解析为对象树,以便更轻松地访问数据。但是我不太确定这对我的用户来说是否表现得足够好。是否有其他方法来解析 XML,从而具有更好的性能影响?我对 XSLT 不太熟悉,但这是一个可行的选择吗?
提前致谢!!
I have a MVC 2 web application that will have a high volume of users. One page in particular will be rendered based on XML from a database table. I was hoping to use de-serialization to parse the XML into an object tree for easier access to the data. However I'm not so sure that this will perform well enough for my users. Is there any other methods to parse the XML that will have better performance implications? I'm not that familiar with XSLT but is that a viable option?
Thanks in advance!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们决定进行 xslt 转换。问题解决了。
We decided to go with the xslt transformation. Problem solved.