XML Deserialization performance in ASP.NET MVC
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 hopi开发者_JS百科ng 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!!
We decided to go with the xslt transformation. Problem solved.
精彩评论