Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: object oriented performance

by kimanaw (Beadle)
on Jul 16, 2005 at 23:51 UTC ( [id://475521]=note: print w/replies, xml ) Need Help??


in reply to object oriented performance

Some overhead, yes. 30% ? Not likely, unless you subscribe to the notion "each method should only be <tiny-number> lines long", which would mean the overhead of each method call is a significant piece of the total RTT.

Also note that its possible to use arrayrefs for your objects, tho you should only use that for "final" classes. Last time I ran a comparison test, arrayref objects were almost 4x faster than hashref objects (assuming the called methods are just stubs).

Update: Ooops!Just recalled, the arrayref tests included member references, I believe thats where the biggest improvement between arrayref v. hashref objects shows up...

Replies are listed 'Best First'.
Re^2: object oriented performance
by perlhaq (Scribe) on Jul 17, 2005 at 15:00 UTC
    Are you willing to share this test code?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://475521]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-24 12:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found