
23 Mar
2010
23 Mar
'10
3:52 p.m.
On Tue, Mar 23, 2010 at 11:22:23AM -0700, Bryan O'Sullivan wrote:
2010/3/23 Iustin Pop
I agree with the principle of correctness, but let's be honest - it's (many) orders of magnitude between ByteString and String and Text, not just a few percentage points…
Well, your benchmarks are highly suspect. See below.
Data.ByteString.Lazy.UTF8 (system readFile + fromString + length) - 11 seconds, correct length.
You should be using bytestring I/O for this.
As I was told, indeed :)
Data.Text.Lazy (system readFile + pack + length) - 26s, correct length.
You should be using text I/O for this.
I didn't realize Data.Text.IO exists. Thanks for the hint! iustin