I'm currently using URI::URL to generate this, however it is isn't as fast as I'd like it to be. Does anyone know another way to do this that may be faster?
|
|
The following code should work.
You should also take a look at the URI page on search.cpan.org. |
||
|
|
|
|
Perhaps I got the wrong end of the stick but wouldn't,
work? IIRC Perl text processing is pretty quick. @lennysan Ah sure yes of course. Sorry I can't help, my Perl is pretty rusty. |
|||
|
|
|
|
Brendan, I should have clarified that I can't guarantee what the relative path is going to look like. It could be pretty tricky (e.g. has a slash at the front, doesn't have a slash, has "../", etc). Peter, that's what I'm using now. Or is that faster then using the URI::URL->new($path)->abs? |
||
|
|
|
|
Just happened across this article which point out shortcomings in Redhat/Centos/Fedora implementations of Perl which affect If you are running one of these Linux flavours, you might want to recompile Perl from original source (not RPM source).
|
|||
|
|
|
|
Could depend a bit how you obtain those 2 strings. Probably the secure, fireproof way to do that is what is in URI::URL or similar libraries, where all alternatives, including malicious ones, would be considered. Maybe slower, but in some environments faster will be the speed of a bullet going to your own foot. But if you expect there something plain and not tricky could see if it starts with /, chains of ../, or any other char. The 1st would put the server name + the url, the 2nd chop paths from the base uri till getting in one of the other 2 alternatives, or just add it to the base url. |
||
|
|
