in reply to Re: Problem with utf8 after nearly 4096 bytes
in thread Problem with utf8 after nearly 4096 bytes

Your new version is still copying the entire file into mem. What you should try is changing your current approach:

undef $/; my $bigfile = <$fh>; # Do some processing on $bigfile
to something like this
while (my $line = <$fh>) { # Do some processing on $line }

Cheers,
R.

Pereant, qui ante nos nostra dixerunt!