Skip Menu |

This queue is for tickets about the URI CPAN distribution.

Report information
The Basics
Id: 80074
Status: new
Priority: 0/
Queue: URI

People
Owner: Nobody in particular
Requestors: ALT [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Perfomance problems on URI::_punycode
This module need serious optimizations. For example sub encode_punycode { my $input = shift; my @input = split //, $input; #.... my @basic = grep /$BasicRE/, @input; In this case /$BasicRE/ will be recompiled for each caharacter in $input. We got serious CPU overload when used this module.