in reply to Data. Lots of Data.
If you convert your data to XML, then you could use one of the XQL modules at CPAN.
XQL allows you to use SQL-like syntax to access an XML tree of data, and it could be what you want.
A potential problem is that some implementations of XQL hold the entire XML tree in memory, others do not. An implementation which did the former might use up all of your memory.
The documentation for Enno Dirksen's XML-XQL at CPAN says that it uses the module XML-DOM, which means that it holds the entire XML tree in memory. The documentation says that future releases might use the module XML-Grove. Using XML-Grove would not hold the entire tree in memory, since avoiding memory-hogging XML apps is the purpose of XML-Grove.
There is also an XML-miniXQL by Matt Sergeant at CPAN. It is not clear from reading its documentation what its memory requirements are.
If I were going to do this project I would look into XML/XQL. The modules install easily and one can do simple applications in an afternoon.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re (tilly) 2: Data. Lots of Data.
by tilly (Archbishop) on Feb 07, 2001 at 17:55 UTC | |
|
Re: Re: Data. Lots of Data.
by mirod (Canon) on Feb 07, 2001 at 18:13 UTC |