On Fri, 19 May 2000, Gunther Birznieks wrote: > eg I think there was a thread on this list way back about OO method calls > versus direct package references... and people said that OO method calls > have a lot of overhead, but I think in later versions of Perl, OO method > call paths are cached(?) and so method calls no longer have the same > overhead as they used to. there has always been a method cache, but even with that, methods are still a bit more expensive. the only improvement in 5.6.0 related to method calls (that i know of ) is that: $obj->method; #where method name is constant, know at compile time is now faster than: $obj->$method; #where $method isn't known until runtime
- Re: RFC: Apache::Request::Forms (o... Drew Taylor
- New Module (was Re: RFC: Apache::R... Francesc Guasch
- Re: RFC: Apache::Request::Forms (o... Autarch
- Re: RFC: Apache::Request::Forms (o... Drew Taylor
- Re: RFC: Apache::Request::Forms (or something similar) Autarch
- Re: RFC: Apache::Request::Forms (or something simil... brian moseley
- Re: RFC: Apache::Request::Forms (or something s... Drew Taylor
- Re: RFC: Apache::Request::Forms (or something s... Jeffrey W. Baker
- Re: RFC: Apache::Request::Forms (or somethi... brian moseley
- Re: RFC: Apache::Request::Forms (or som... Gunther Birznieks
- Re: RFC: Apache::Request::Forms (o... Doug MacEachern
- Re: RFC: Apache::Request::Forms (or som... Doug MacEachern
- Re: RFC: Apache::Request::Forms (o... brian moseley
- Re: RFC: Apache::Request::Forms (or somethi... w trillich
- Re: RFC: Apache::Request::Forms (or something simil... Doug MacEachern
- Re: RFC: Apache::Request::Forms (or something s... Autarch
- Re: RFC: Apache::Request::Forms (or somethi... Doug MacEachern
- Re: RFC: Apache::Request::Forms (or som... Matt Sergeant
- Re: RFC: Apache::Request::Forms (o... Vivek Khera
- Re: RFC: Apache::Request::Forms (o... Doug MacEachern
- Re: RFC: Apache::Request::Forms (o... Matt Sergeant