|
4
|
|
edited Nov 21 '08 at 23:21
|
There are many things that you might improve on, so you first have to figure out what's slow. Others have already answered that question. I talk about this a bit in Mastering Perl too.
An incomplete list of things to think about as you are writing new code:
- Perl has to compile the source every time and compilation can be slow. It has to find all the files and so on. See, for instance, A Timely Start "A Timely Start", by Jean-Louis Leroy, where he speeds everything up just by optimizing module locations in
@INC. If you're your start-up costs are expensive and unavoidable, you might also look at persistent perls, like pperl, mod_perl, and so on.
- Look at some of the modules you use. Do they have long chains of dependencies just to do simple things? Sure, we don't like re-invention, but if the wheel you want to put on your car also comes with three boats, five goats, and a cheeseburger, maybe you want to build your own wheel (or find a different one).
- Method calls can be expensive. In the Perl::Critic test suite, for instance, it's its calls to
isa that slows things down. It's not something that you can really avoid in all cases, but it is something to keep in mind. Someone had a great quote that went something like "No one minds giving up a factor of 2; it's when you have ten people doing it that it's bad." :)
- If you're calling the same expensive methods over and over again but getting the same answers, something like Memoize might be for you. It's a proxy for the method call. If it's really a function (meaning, same input gives same output with no side effects), you don't really need to call it repeatedly.
- Modules such as Apache::DBI can reuse database handles for you to avoid the expensive opening of database connections. It's really simple code, so looking inside can show you how to do that even if you aren't using Apache.
- Perl doesn't do tail recursion, so don't come over from Lisp thinking you're going to make these super fast recursive algorithms.
- Look at your regexes. Lots of open ended quantifiers (e.g.
.*) can lead to lots of backtracking. Check out Jeffrey Freidl's Mastering Regular Expressions for all the gory details (and across several languages). Also check out his regex website.
- Know how your perl is compiled. Do you really need threading and DDEBUGGING? Those slow you down a bit. Check out the perlbench utility to compare different perl binaries.
|
|
|
|
3
|
|
|
There are many things that you might improve on, so you first have to figure out what's slow. Others have already answered that question. I talk about this a bit in Mastering Perl too.
An incomplete list of things to think about as you are writing new code:
- Perl has to compile the source every time and compilation can be slow. It has to find all the files and so on. See, for instance, A Timely Start "A Timely Start", by Jean-Louis Leroy, where he speeds everything up just by optimizing module locations in
@INC. If you're start-up costs are expensive and unavoidable, you might also look at persistent perls, like pperl, mod_perl, and so on.
- Look at some of the modules you use. Do they have long chains of dependencies just to do simple things? Sure, we don't like re-invention, but if the wheel you want to put on your car also comes with three boats, five goats, and a cheeseburger, maybe you want to build your own wheel (or find a different one).
- Method calls can be expensive. In the Perl::Critic test suite, for instance, it's calls to
isa that slows things down. It's not something that you can really avoid in all cases, but it is something to keep in mind. Someone had a great quote that went something like "No one minds giving up a factor of 2; it's when you have ten people doing it that it's bad." :)
- If you're calling the same expensive methods over and over again but getting the same answers, something like Memoize might be for you. It's a proxy for the method call. If it's really a function (meaning, same input gives same output with no side effects), you don't really need to call it repeatedly.
- Modules such as Apache::DBI can reuse database handles for you to avoid the expensive opening of database connections. It's really simple code, so looking inside can show you how to do that even if you aren't using Apache.
- Perl doesn't do tail recursion, so don't come over from Lisp thinking you're going to make these super fast recursive algorithms.
- Look at your regexes. Lots of open ended quantifiers (e.g.
.*) can lead to lots of backtracking. Check out Jeffrey Freidl's Mastering Regular Expressions for all the gory details (and across several languages). Also check out his regex website.
- Know how your perl is compiled. Do you really need threading and DDEBUGGING? Those slow you down a bit. Check out the perlbench utility to compare different perl binaries.
|
|
|
|
2
|
|
|
Some I talk about this a bit in Mastering Perl too. An incomplete list of things to think about as you are writing new code: Look at some of the modules you use. Do they have long chains of dependencies just to do simple things? Sure, we don't like re-invention, but if the wheel you want to put on your car also comes with three boats, five goats, and a cheeseburger, maybe you want to build your own wheel (or find a different one).Method calls can be expensive. In the Perl::Critic test suite, for instance, it's calls to isa that slows things down. It's not something that you can really avoid in all cases, but it is something to keep in mind. Someone had a great quote that went something like "No one minds giving up a factor of 2; it's when you have ten people doing it that it's bad." :)If you're calling the same expensive methods over and over again but getting the same answers, something like Memoize might be for you. It's a proxy for the method call. If it's really a function (meaning, same input gives same output with no side effects), you don't really need to call it repeatedly.Modules such as Apache::DBI can reuse database handles for you to avoid the expensive opening of database connections. It's really simple code, so looking inside can show you how to do that even if you aren't using Apache.Look at your regexes. Lots of open ended quantifiers (e.g. .*) can lead to lots of backtracking. Check out Jeffrey Freidl's Mastering Regular Expressions for all the gory details (and across several languages). Also check out his regex website.
|
|
|
|
1
|
|
answered Oct 7 '08 at 8:44
|
There are many things that you might improve on, so you first have to figure out what's slow. Others have already answered that question.
Some things to think about:
- Perl has to compile the source every time and compilation can be slow. It has to find all the files and so on. See, for instance, A Timely Start "A Timely Start", by Jean-Louis Leroy, where he speeds everything up just by optimizing module locations in
@INC. If you're start-up costs are expensive and unavoidable, you might also look at persistent perls, like pperl, mod_perl, and so on.
- Method calls can be expensive. In the Perl::Critic test suite, for instance, it's calls to
isa that slows things down.
- Perl doesn't do tail recursion, so don't come over from Lisp thinking you're going to make these super fast recursive algorithms.
|
|
|