Message189611
I agree that making lzma.open() wrap its return value in a BufferedReader
(or BufferedWriter, as appropriate) is the way to go. I'm currently
travelling and don't have my SSH key with me - Serhiy, can you make the
change?
I'll put together a documentation patch that recommends using lzma.open()
rather than LZMAFile directly, and mentions the performance implications.
> Interestingly, opening in text (i.e. unicode) mode is almost as fast as with a BufferedReader:
This is because opening in text mode returns a TextIOWrapper, which is
written in C, and presumably does its own buffering on top of
LZMAFile.read1() instead of calling LZMAFile.readline().
> From my perspective default wrapping with io.BufferedReader is a great
> idea. I can't think of who would suffer. Maybe someone who wants to
> open thousands of simultaneous streams wouldn't appreciate the memory
> overhead. If that person exists then he would want an option to turn
> it off.
If someone doesn't want the BufferedReader/BufferedWriter, they can
create an LZMAFile directly; we don't plan to remove that possibility. So
I don't think that should be a problem. |
|
Date |
User |
Action |
Args |
2013-05-19 17:52:20 | nadeem.vawda | set | recipients:
+ nadeem.vawda, rhettinger, pitrou, vstinner, serhiy.storchaka, Michael.Fox |
2013-05-19 17:52:20 | nadeem.vawda | set | messageid: <1368985940.65.0.0946283632411.issue18003@psf.upfronthosting.co.za> |
2013-05-19 17:52:20 | nadeem.vawda | link | issue18003 messages |
2013-05-19 17:52:20 | nadeem.vawda | create | |
|