In our new project, we must provide a search function to extract data from hundreds of xml files. I have a summary of our current plan below, I would like to know your suggestions / improvements on this.
These xml files contain personal information, and the search is based on 10 elements, for example, name, name, email, etc. Our current plan is to create the main XmlDocument with all the searchable data and the key to the actual file. Thus, when a user searches for data, we first look at the main file and get the results. We will also cache actual xml files from recent searches, so subsequent simillar requests can be quickly processed.
Our application is a .net 2.0 web application.
source
share