I need to send xml response to a front end application (.NET). The xml response will contain too many tags for data. Basically, I need to send data retrieved from one table which is very large (like one hundred thousand rows or larger). The xml (for example) is like this,
<Values>
<value>
<value1></value1>
<value2></value2>
.
.
<valuen></valuen>
</value>
.
.
<Values>
I am curious about the performance problem. Is there any other alternative approach I should use to improve speed? I am using Freemarker API for xml response.
PS. Please note that Value1, Value2 is only example tag. Actually, they are fields from one table.