Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I search a large XML data set?

I have a DataModule with XML and I need do a search...

Unfortunately there are more than 300,000 records and I can't make a loop to check one-by-one.

Is it possible to make a query without using a database?

Is there another solution?

like image 765
Leo Avatar asked Jan 23 '23 03:01

Leo


1 Answers

XML's fine for small amounts of information, but for a dataset that big, a relational database is really the only sane choice, especially if you need to be able to query it.

like image 78
Mason Wheeler Avatar answered Jan 25 '23 23:01

Mason Wheeler