NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
I'd be interested in that patch (Score:2)
I'd be interested in that patch as at my previous job we had a system that sent thousands of big multipart MIME emails at a time and that could improve things greatly.
I'd also possibly use it in my new job too.
@JAPH = qw(Hacker Perl Another Just);
print reverse @JAPH;
Re:I'd be interested in that patch (Score:2)
-sam
Maintaining MIME::Lite (Score:2)
First of all, as I'd like to duplicate your benchmarks, I wonder how exactly you measured things? What exactly did you test?
Second, I have my doubts on how
$sub_attrs->{'content-disposition'}{'filename'}would ever be faster than$sub_attrs->{'cRe:Maintaining MIME::Lite (Score:2)
2) The code needs to be able to loop through all the sub-attrs for a given attr in fields(). That would be rather complicated with the scheme you suggest, although it's possible it would be faster (and there's only one way to find out!). However, this isn't a change I made: the old code looked up every single attribute like $attr->{$attr}{$sub} where $sub was '' for the "main" attribute. My change r
Re:Maintaining MIME::Lite (Score:2)