CORBA Numbers

Jayakumar Muthukumarasamy ([email protected])
Tue, 24 Jan 1995 18:28:26 -0500 (EST)

I replaced the book structure with a book interface, but it didn't
help. When the book objects were created on demand and as persistent (every
object is created when needed, and each creation requires a round-trip to the
orb), the numbers I got were around 700 secs. I changed it so that all the
objects are created at the beginning of the program and all objects are
created as transient (the round trip to the orb is eliminated), the
numbers I got were around 500 secs. This looks like some saving but the
numbers are still way too high. When the objects are created as transient
in the server, it takes about 4 secs to create 10000 objects as opposed
to 300 secs when the objects are not transient. So, it definitely saves
sometime while creation. I still don't understand why the numbers are high.
I will probably try to do a profile tomorrow. I will let you know what is
happening.

-jk