[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Parsing big compressed XML files
- From: Oliver Kroth <oliver.kroth@...>
- Date: Thu, 03 Apr 2014 18:09:38 +0200
You may also try one of the zlib libraries that create an interface
between Lua and the zLib.
This may save you from have to inflate (decompress) the complete file first.
-- Oliver
Am 03.04.2014 16:55, schrieb Valerio Schiavoni:
Hello Luiz
thanks for your reply. But, your solution seems to suggest I first
need to decompress before hand the (potentially huge) compressed file.
Is that the case? Do you think it is possible to do it directly on the
compressed file, or by pipe'ing its content with zcat for instance ?