http://www.perlmonks.org?node_id=691908


in reply to Optimizing a large project.

"We call a LOT of methods in our system, if we can make calling them faster, it would make a difference."

There is a TODO item in the perltodo about a potential speed-up of the entersub op which needs to be evaluated on every sub call:

entersub-XS-vs-Perl

I had a brief look at it and while I'm not exactly a core hacker, that task seems rather difficult. It's also no fun, so you most likely won't find somebody to do it in his or her spare time. My gut feeling is that you'd have to either try to do that within your organization or try to find a perl core hacker willing to tackle the issue and pay him for it.

A cheaper but certainly tiny optimization might be to replace accessor methods a la sub get_foo { $_[0]->{foo} } with use Class::XS getters => [qw(foo)];. (Same thing for setters, of course.) Unfortunately, that won't fly if you want to do any checking in your accessor methods. Then, you could "steal" the corresponding XS from the aforementioned module and use it as a template to roll your own.

Cheers,
Steffen