Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Object creation performance in CF 9: any better?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 33 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Brian Swartzfager  
View profile  
 More options Jul 16 2009, 7:03 am
From: Brian Swartzfager <bcswa...@gmail.com>
Date: Thu, 16 Jul 2009 04:03:51 -0700 (PDT)
Local: Thurs, Jul 16 2009 7:03 am
Subject: Object creation performance in CF 9: any better?
One of the issues that keeps coming up as part of this discussion (and
rightly so) is the performance penalty you take when you instantiate a
large number of objects in ColdFusion.

I remember when CF 8 came out, a lot of numbers were thrown out there
regarding the performance improvements (i.e. this operation now runs
43% faster, this tag now works 89% faster, etc.).  But so far, I
haven't seen anyone publish such numbers for CF 9, and performance
improvements as a whole was only briefly mentioned (if at all) in
Terry's 2-hour Connect session on Monday.

So do we know if object instantiation performance has improved in CF
9, and if so by how much?  Or, being that it's still in beta, is it
too soon to look at that/make a judgment about it?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Matt Williams  
View profile  
 More options Jul 16 2009, 9:34 am
From: Matt Williams <mgw...@gmail.com>
Date: Thu, 16 Jul 2009 06:34:06 -0700 (PDT)
Local: Thurs, Jul 16 2009 9:34 am
Subject: Re: Object creation performance in CF 9: any better?
I would love to see some info on this too. It seems the question is
going unanswered lately. It was asked 2 or 3 times on Forta's blog
when he posted about ORM.
http://forta.com/blog/index.cfm/2009/7/7/ORM-Rethinking-ColdFusion-Da...

Thus far I've stuck to queries for anything returning more than one
record, and seeing the code example in his blog entry:
<cfset data=EntityLoad("Books")>
immediately made me think, what about performance with regards to
object instantiation??

Perhaps because it is Hibernate creating Java objects and not CFCs we
will be okay. But the jury is out until some official test results are
in.

-Matt Williams

On Jul 16, 7:03 am, Brian Swartzfager <bcswa...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevan Stannard  
View profile  
 More options Jul 16 2009, 9:44 am
From: Kevan Stannard <kevanstann...@gmail.com>
Date: Thu, 16 Jul 2009 23:44:45 +1000
Local: Thurs, Jul 16 2009 9:44 am
Subject: Re: [coldfusionoo] Re: Object creation performance in CF 9: any better?

I had a quick look at this when I first fired up CF9. I performed a test of
just creating objects with only an init() function, so these numbers are
around the maximum I can get out of CF on my laptop (dual core win xp - just
a moderate machine). Adding functions to components will reduce the
performance.
On CF8 I was able to create 4,000 objects per second.

On CF9 Beta I was able to create around 25,000 objects per second. This
actually started off at a much lower number the first time I executed the
code (around 10,000 per second) but after running the test a few times it
found its way up to the 25,000 mark.

2009/7/16 Matt Williams <mgw...@gmail.com>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Hal Helms  
View profile  
 More options Jul 16 2009, 9:47 am
From: Hal Helms <hal.he...@gmail.com>
Date: Thu, 16 Jul 2009 09:47:25 -0400
Local: Thurs, Jul 16 2009 9:47 am
Subject: Re: [coldfusionoo] Re: Object creation performance in CF 9: any better?
4000 objects per second on CF 8? Wow. That doesn't at all match my
experience of working with complex objects. Perhaps the connections
(aggregation, inheritance) is a limiting factor? Just a guess.

--
Hal Helms
Training, Mentoring, Consulting

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Allen  
View profile  
 More options Jul 16 2009, 9:50 am
From: "James Allen" <slingsho...@googlemail.com>
Date: Thu, 16 Jul 2009 14:50:11 +0100
Local: Thurs, Jul 16 2009 9:50 am
Subject: RE: [coldfusionoo] Re: Object creation performance in CF 9: any better?

That is a crazy improvement - awesome!

Be interesting to see this benched against Railo 3.1.

Hope they release soon. We are set to launch our .com on the 7th August but
are probably going to have to go CF8 as I assume CF9 won't be out by then.
Hope they offer a cheap upgrade path.

---

James Allen

E: ja...@jamesallen.name

Blog: http://jamesallen.name

Twitter: @CFJamesAllen (Coldfusion / Web development)

Twitter: @jamesallenuk (General)

From: coldfusionoo@googlegroups.com [mailto:coldfusionoo@googlegroups.com]
On Behalf Of Kevan Stannard
Sent: 16 July 2009 14:45
To: coldfusionoo@googlegroups.com
Subject: [coldfusionoo] Re: Object creation performance in CF 9: any better?

I had a quick look at this when I first fired up CF9. I performed a test of
just creating objects with only an init() function, so these numbers are
around the maximum I can get out of CF on my laptop (dual core win xp - just
a moderate machine). Adding functions to components will reduce the
performance.

On CF8 I was able to create 4,000 objects per second.

On CF9 Beta I was able to create around 25,000 objects per second. This
actually started off at a much lower number the first time I executed the
code (around 10,000 per second) but after running the test a few times it
found its way up to the 25,000 mark.

2009/7/16 Matt Williams <mgw...@gmail.com>

I would love to see some info on this too. It seems the question is
going unanswered lately. It was asked 2 or 3 times on Forta's blog
when he posted about ORM.
http://forta.com/blog/index.cfm/2009/7/7/ORM-Rethinking-ColdFusion-Da...
Integration

Thus far I've stuck to queries for anything returning more than one
record, and seeing the code example in his blog entry:
<cfset data=EntityLoad("Books")>
immediately made me think, what about performance with regards to
object instantiation??

Perhaps because it is Hibernate creating Java objects and not CFCs we
will be okay. But the jury is out until some official test results are
in.

-Matt Williams

On Jul 16, 7:03 am, Brian Swartzfager <bcswa...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Allen  
View profile  
 More options Jul 16 2009, 9:51 am
From: "James Allen" <slingsho...@googlemail.com>
Date: Thu, 16 Jul 2009 14:51:53 +0100
Local: Thurs, Jul 16 2009 9:51 am
Subject: RE: [coldfusionoo] Re: Object creation performance in CF 9: any better?
It may be worth reinvestigating it Hal. Obviously the complexity of objects
has an effect but you may find things have improved with later Java
revisions. Once Sun fixed the object instantiation bug CFC performance in
CF8 improved dramatically...

---
James Allen
E: ja...@jamesallen.name
Blog: http://jamesallen.name
Twitter: @CFJamesAllen (Coldfusion / Web development)
Twitter: @jamesallenuk (General)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Hal Helms  
View profile  
 More options Jul 16 2009, 9:52 am
From: Hal Helms <hal.he...@gmail.com>
Date: Thu, 16 Jul 2009 09:52:12 -0400
Local: Thurs, Jul 16 2009 9:52 am
Subject: Re: [coldfusionoo] Re: Object creation performance in CF 9: any better?
Definitely worth reinvestigating.

--
Hal Helms
Training, Mentoring, Consulting

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Allen  
View profile  
 More options Jul 16 2009, 9:57 am
From: "James Allen" <slingsho...@googlemail.com>
Date: Thu, 16 Jul 2009 14:57:47 +0100
Local: Thurs, Jul 16 2009 9:57 am
Subject: RE: [coldfusionoo] Re: Object creation performance in CF 9: any better?
I would love to hear your results.

We're launching a big .com next month which I build from the ground up in
CF8, MG2, Coldspring and Transfer. It's by no means super optimised but
after upgrading Java it runs superbly. The beta testing phase has gone well
and the app seems to be performing nicely. Just hope it scales as the user
levels increase..

---
James Allen
E: ja...@jamesallen.name
Blog: http://jamesallen.name
Twitter: @CFJamesAllen (Coldfusion / Web development)
Twitter: @jamesallenuk (General)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tom Chiverton  
View profile  
 More options Jul 16 2009, 9:59 am
From: Tom Chiverton <tom.chiver...@gmail.com>
Date: Thu, 16 Jul 2009 14:59:56 +0100
Local: Thurs, Jul 16 2009 9:59 am
Subject: Re: [coldfusionoo] Re: Object creation performance in CF 9: any better?
2009/7/16 James Allen <slingsho...@googlemail.com>:

> Just hope it scales as the user
> levels increase..

I assume this isn't just crossing your fingers, and you've actually
run JMeter or something against it to simulate more users ?

--
Tom


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kevan Stannard  
View profile  
 More options Jul 16 2009, 10:12 am
From: Kevan Stannard <kevanstann...@gmail.com>
Date: Fri, 17 Jul 2009 00:12:45 +1000
Local: Thurs, Jul 16 2009 10:12 am
Subject: Re: [coldfusionoo] Re: Object creation performance in CF 9: any better?

Performance discussions typically focus on object creation, but I've found
that function execution also carries a significant overhead.
So if you have an object with 20 setters, and all 20 setters are called when
the object is created (say, from an init() function), then this will have a
significant performance impact on the time to initialise the object.

From memory function calls had a similar overhead to trivial object
creation, but I'd need to double check that.

2009/7/16 Hal Helms <hal.he...@gmail.com>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Matt Williams  
View profile  
 More options Jul 16 2009, 12:26 pm
From: Matt Williams <mgw...@gmail.com>
Date: Thu, 16 Jul 2009 09:26:51 -0700 (PDT)
Local: Thurs, Jul 16 2009 12:26 pm
Subject: Re: Object creation performance in CF 9: any better?

On Jul 16, 10:12 am, Kevan Stannard <kevanstann...@gmail.com> wrote:

> From memory function calls had a similar overhead to trivial object
> creation, but I'd need to double check that.

That sounds right to me. I remember hearing that when CF compiles to
Java, each function is actually its own java class. I could be wrong
here, but if not then as CFCs have more functions you get that much
more instantiation going on.

-Matt Williams


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Henry Ho  
View profile  
 More options Jul 16 2009, 5:26 pm
From: Henry Ho <henryho...@gmail.com>
Date: Thu, 16 Jul 2009 14:26:28 -0700 (PDT)
Local: Thurs, Jul 16 2009 5:26 pm
Subject: Re: Object creation performance in CF 9: any better?
Latest benchmark:

http://www.objectorientedcoldfusion.org/post.cfm/coldfusion-9-object-...

http://blog.kukiel.net/2009/07/coldfusion-8-9-and-railo-object.html

Henry

On Jul 16, 9:26 am, Matt Williams <mgw...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sean Corfield  
View profile  
 More options Jul 17 2009, 12:35 am
From: Sean Corfield <seancorfi...@gmail.com>
Date: Thu, 16 Jul 2009 21:35:31 -0700
Local: Fri, Jul 17 2009 12:35 am
Subject: Re: [coldfusionoo] Re: Object creation performance in CF 9: any better?
It's important to note Adam Lehman's comments in that thread.

It's also important to notice two new Admin options in CF9:
- Cache Template In Request (each .cfc file is only checked once per request)
- Component cache (each CFC path found is cached and never looked up again)

These have a huge impact on CF9 performance if you turn them off.

Frankly, I think the performance argument against OOCF is over-used
but certainly Railo and now CF9 ought to make people reconsider...


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Matt Williams  
View profile  
 More options Jul 17 2009, 10:05 am
From: Matt Williams <mgw...@gmail.com>
Date: Fri, 17 Jul 2009 07:05:38 -0700 (PDT)
Local: Fri, Jul 17 2009 10:05 am
Subject: Re: Object creation performance in CF 9: any better?
 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jmetcher  
View profile  
 More options Jul 20 2009, 11:56 pm
From: jmetcher <jmetc...@gmail.com>
Date: Mon, 20 Jul 2009 20:56:06 -0700 (PDT)
Local: Mon, Jul 20 2009 11:56 pm
Subject: Re: Object creation performance in CF 9: any better?
To selectively quote Rupesh:

"But even then it can not match POJO performance and thats an
unrealistic target."

Indeed.  I agree with Sean that the performance thing is a little
overamped.  If you really need to crunch a lot of data, or are really
going to get lot of leverage out of an "everything is an object"
style, CF isn't going to cut it.  Not with a 20% improvement, not with
a 200% improvement.  But that leaves a huge set of applications where
CF is just fine.

If you like synthetic benchmarks, I tried Kevan's instantiatation test
and got CF8 = ~3500K objects/second, Java6 = ~6M objects per
second.    CF doesn't, can't and shouldn't compete on raw performance.

Jaime

On Jul 18, 12:05 am, Matt Williams <mgw...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jmetcher  
View profile  
 More options Jul 20 2009, 11:58 pm
From: jmetcher <jmetc...@gmail.com>
Date: Mon, 20 Jul 2009 20:58:55 -0700 (PDT)
Local: Mon, Jul 20 2009 11:58 pm
Subject: Re: Object creation performance in CF 9: any better?
Hal,

On raw object instantiation my dev box gets about 3.5K objects per
second.  But at the ORM level, that translates to a much lower
number.  Obviously there a lot of variables, but 100 fully hydrated
domain objects per second is in the ballpark.

Jaime

On Jul 16, 11:47 pm, Hal Helms <hal.he...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
jmetcher  
View profile  
 More options Jul 20 2009, 11:59 pm
From: jmetcher <jmetc...@gmail.com>
Date: Mon, 20 Jul 2009 20:59:46 -0700 (PDT)
Local: Mon, Jul 20 2009 11:59 pm
Subject: Re: Object creation performance in CF 9: any better?
Sorry, that should have been CF8 = 3.5K objects per second.

On Jul 21, 1:56 pm, jmetcher <jmetc...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
whostheJBoss  
View profile  
 More options Jul 31 2009, 2:48 pm
From: whostheJBoss <dotfus...@changethings.org>
Date: Fri, 31 Jul 2009 11:48:54 -0700 (PDT)
Local: Fri, Jul 31 2009 2:48 pm
Subject: Re: [coldfusionoo] Re: Object creation performance in CF 9: any better?
What Java version are you using?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Allen  
View profile  
 More options Aug 1 2009, 5:48 am
From: "James Allen" <slingsho...@googlemail.com>
Date: Sat, 1 Aug 2009 10:48:43 +0100
Local: Sat, Aug 1 2009 5:48 am
Subject: RE: [coldfusionoo] Re: Object creation performance in CF 9: any better?
Hey there,

Currently running 1.6.0_14.

Cheers,
James.

---
James Allen
E: ja...@jamesallen.name
Blog: http://jamesallen.name
Twitter: @CFJamesAllen (Coldfusion / Web development)
Twitter: @jamesallenuk (General)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jim  
View profile  
 More options Aug 1 2009, 6:30 am
From: Jim <dotfus...@changethings.org>
Date: Sat, 1 Aug 2009 03:30:13 -0700 (PDT)
Local: Sat, Aug 1 2009 6:30 am
Subject: Re: [coldfusionoo] Re: Object creation performance in CF 9: any better?

Are you seeing any memory leak issues or anything like that? I'm finding that the creation of some simple Transfer objects (like a user with an id field, name, address fields) are eating a megabyte of memory when created.

--- On Sat, 8/1/09, James Allen <slingsho...@googlemail.com> wrote:

From: James Allen <slingsho...@googlemail.com>
Subject: [coldfusionoo] Re: Object creation performance in CF 9: any  better?
To: coldfusionoo@googlegroups.com
Date: Saturday, August 1, 2009, 2:48 AM

Hey there,

Currently running 1.6.0_14.

Cheers,
James.

---
James Allen
E: ja...@jamesallen.name
Blog: http://jamesallen.name
Twitter: @CFJamesAllen (Coldfusion / Web development)
Twitter: @jamesallenuk (General)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Allen  
View profile  
 More options Aug 1 2009, 6:36 am
From: "James Allen" <slingsho...@googlemail.com>
Date: Sat, 1 Aug 2009 11:36:01 +0100
Local: Sat, Aug 1 2009 6:36 am
Subject: RE: [coldfusionoo] Re: Object creation performance in CF 9: any better?

I haven't noticed anything specifically but to be honest I haven't looked at
memory usage until a few minutes ago after reading your message.

Current memory use of JRun is 787MB and the server has been up for about 4
weeks without a single reboot.

---

James Allen

E: ja...@jamesallen.name

Blog: http://jamesallen.name

Twitter: @CFJamesAllen (Coldfusion / Web development)

Twitter: @jamesallenuk (General)

From: coldfusionoo@googlegroups.com [mailto:coldfusionoo@googlegroups.com]
On Behalf Of Jim
Sent: 01 August 2009 11:30
To: coldfusionoo@googlegroups.com
Subject: [coldfusionoo] Re: Object creation performance in CF 9: any better?

Are you seeing any memory leak issues or anything like that? I'm finding
that the creation of some simple Transfer objects (like a user with an id
field, name, address fields) are eating a megabyte of memory when created.

--- On Sat, 8/1/09, James Allen <slingsho...@googlemail.com> wrote:

From: James Allen <slingsho...@googlemail.com>
Subject: [coldfusionoo] Re: Object creation performance in CF 9: any better?
To: coldfusionoo@googlegroups.com
Date: Saturday, August 1, 2009, 2:48 AM

Hey there,

Currently running 1.6.0_14.

Cheers,
James.

---
James Allen
E: ja...@jamesallen.name
Blog: http://jamesallen.name
Twitter: @CFJamesAllen (Coldfusion / Web development)
Twitter: @jamesallenuk (General)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
whostheJBoss  
View profile  
 More options Aug 1 2009, 7:11 am
From: whostheJBoss <dotfus...@changethings.org>
Date: Sat, 1 Aug 2009 04:11:12 -0700 (PDT)
Local: Sat, Aug 1 2009 7:11 am
Subject: Re: Object creation performance in CF 9: any better?
What kind of traffic do you get? Do you rely heavily on Transfer?

On Aug 1, 3:36 am, "James Allen" <slingsho...@googlemail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Allen  
View profile  
 More options Aug 1 2009, 7:35 am
From: "James Allen" <slingsho...@googlemail.com>
Date: Sat, 1 Aug 2009 12:35:27 +0100
Local: Sat, Aug 1 2009 7:35 am
Subject: RE: [coldfusionoo] Re: Object creation performance in CF 9: any better?
We're only in beta at the moment so a very small amount of traffic so far.
The whole site relies on Transfer completely.

---
James Allen
E: ja...@jamesallen.name
Blog: http://jamesallen.name
Twitter: @CFJamesAllen (Coldfusion / Web development)
Twitter: @jamesallenuk (General)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jim  
View profile  
 More options Aug 1 2009, 7:39 am
From: Jim <dotfus...@changethings.org>
Date: Sat, 1 Aug 2009 04:39:15 -0700 (PDT)
Local: Sat, Aug 1 2009 7:39 am
Subject: Re: [coldfusionoo] Re: Object creation performance in CF 9: any better?

Ok, I am about to go into beta on something as well that relies completely on Transfer. If you hit any caveats, please post them. I will do the same. I am a little iffy about some memory usage during creation of new objects that I've been seeing.

--- On Sat, 8/1/09, James Allen <slingsho...@googlemail.com> wrote:

From: James Allen <slingsho...@googlemail.com>
Subject: [coldfusionoo] Re: Object creation performance in CF 9: any better?
To: coldfusionoo@googlegroups.com
Date: Saturday, August 1, 2009, 4:35 AM

We're only in beta at the moment so a very small amount of traffic so far.
The whole site relies on Transfer completely.

---
James Allen
E: ja...@jamesallen.name
Blog: http://jamesallen.name
Twitter: @CFJamesAllen (Coldfusion / Web development)
Twitter: @jamesallenuk (General)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Allen  
View profile  
 More options Aug 1 2009, 8:00 am
From: "James Allen" <slingsho...@googlemail.com>
Date: Sat, 1 Aug 2009 13:00:23 +0100
Local: Sat, Aug 1 2009 8:00 am
Subject: RE: [coldfusionoo] Re: Object creation performance in CF 9: any better?

Yeah no problem. We launch next Friday so it will be interesting to see how
the site holds up.

I'll post any issues I come across though.

---

James Allen

E: ja...@jamesallen.name

Blog: http://jamesallen.name

Twitter: @CFJamesAllen (Coldfusion / Web development)

Twitter: @jamesallenuk (General)

From: coldfusionoo@googlegroups.com [mailto:coldfusionoo@googlegroups.com]
On Behalf Of Jim
Sent: 01 August 2009 12:39
To: coldfusionoo@googlegroups.com
Subject: [coldfusionoo] Re: Object creation performance in CF 9: any better?

Ok, I am about to go into beta on something as well that relies completely
on Transfer. If you hit any caveats, please post them. I will do the same. I
am a little iffy about some memory usage during creation of new objects that
I've been seeing.

--- On Sat, 8/1/09, James Allen <slingsho...@googlemail.com> wrote:

From: James Allen <slingsho...@googlemail.com>
Subject: [coldfusionoo] Re: Object creation performance in CF 9: any better?
To: coldfusionoo@googlegroups.com
Date: Saturday, August 1, 2009, 4:35 AM

We're only in beta at the moment so a very small amount of traffic so far.
The whole site relies on Transfer completely.

---
James Allen
E: ja...@jamesallen.name
Blog: http://jamesallen.name
Twitter: @CFJamesAllen (Coldfusion / Web development)
Twitter: @jamesallenuk (General)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 33   Newer >
« Back to Discussions « Newer topic     Older topic »