[cfaussie] Re: ColdFusion 9 Server Memory Issues

2011-07-13 Thread Carl
Hi Sean, I notice Java 7 is due for release at end of July. With java 7 you get the released version of UseG1GC garbage collector - rather than experimental option in java 6. Cheers, Carl. Yeah, on 32-bit Windows, 1.4GB is the most you can give it. I pretty much never run CF in production

Re: [cfaussie] Re: ColdFusion 9 Server Memory Issues

2011-07-13 Thread Sean Corfield
On Tue, Jul 12, 2011 at 11:08 PM, Carl ca...@tassweb.com.au wrote: I notice Java 7 is due for release at end of July. With java 7 you get the released version of UseG1GC garbage collector - rather than experimental option in java 6. Yup. but I don't know how quickly (or even if) Adobe will

Re: [cfaussie] Re: CFbuilder2 thoughts?

2011-07-13 Thread Zac Spitzer
back to the hanging problem, the good news is my swear jar just got richer, but I managed to capture a thread dump :) which I have sent thru to Sagar On Wed, Jul 13, 2011 at 9:26 AM, Brian Knott bkn...@jbk.com.au wrote: Got it thanks Charlie. -Original Message- From:

Re: [cfaussie] Re: CFbuilder2 thoughts?

2011-07-13 Thread Mark Mandel
Zac, Big pat on the back for you for sticking through this, and seeing if the problem can be resolved. Not many people would go as far as you, so kudos to you! Mark On Wed, Jul 13, 2011 at 4:31 PM, Zac Spitzer zac.spit...@gmail.com wrote: back to the hanging problem, the good news is my swear

[cfaussie] CreateObject of itself

2011-07-13 Thread Steve Onnis
Can anyone suggest a way i can create a new reference to a cfc that i am already in? Something like FooBar.cfc cfcomponent cfproperty name=fooProp type=string / cffunction name=bar output=false cfscript LOCAL.tmpArr = [];

Re: [cfaussie] CreateObject of itself

2011-07-13 Thread Phil Haeusler
Hi Steve If you're just trying to avoid referencing the component name within itself, then why not try using local.metaData = GetMetaData(this); local.tmpObj = CreateObject(component, local.metaData.fullname).init(); You might want to check the docs to see if fullname is the correct key to

Re: [cfaussie] CreateObject of itself

2011-07-13 Thread Dennis Clark
Duplicate works on CFC instances, so Duplicate(this) would work. Of course it also duplicates the state of the instances variables in 'this', so it might not be what you want. Otherwise, try CreateObject(component,GetMetaData(this).name) or maybe

Re: [cfaussie] Re: ColdFusion 9 Server Memory Issues

2011-07-13 Thread Kai Koenig
FWIW - tried the G1 collector on Java 6 (_16 release iirc) for a large deployment on Win64/CF 8 for a while and had regular fatal JVM crashes. I'm pretty sure it has improved in later versions, but everyone be aware, that the G1 collector in Java 6 is _really_ experimental and it's not just a

RE: [cfaussie] CreateObject of itself

2011-07-13 Thread Steve Onnis
An you do something like new init() ? From: Dennis Clark [mailto:boomf...@gmail.com] Sent: Wednesday, 13 July 2011 8:58 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] CreateObject of itself Duplicate works on CFC instances, so Duplicate(this) would work. Of course it also

[cfaussie] Re: CreateObject of itself

2011-07-13 Thread Paul Kukiel
Hi Steve, I believe this is what your trying to achieve: http://pastebin.com/hJmsEvaA Running code: http://demo.kukiel.net/cfaussie.cfm Paul On Jul 13, 8:37 pm, Steve Onnis st...@cfcentral.com.au wrote: Can anyone suggest a way i can create a new reference to a cfc that i am already in?

Re: [cfaussie] Re: ColdFusion 9 Server Memory Issues

2011-07-13 Thread Sean Corfield
On Wed, Jul 13, 2011 at 4:40 AM, Kai Koenig k...@koeni.de wrote: FWIW - tried the G1 collector on Java 6 (_16 release iirc) for a large deployment on Win64/CF 8 for a while and had regular fatal JVM crashes. I'm pretty sure it has improved in later versions, but everyone be aware, that the

RE: [cfaussie] Re: CreateObject of itself

2011-07-13 Thread Steve Onnis
Thanks for that Paul On the line where you have LOCAL.tmpObj = new steve(local.i);, is the cfc steve.cfc? and are you meant to import anything else or can you do that with any cfc? -Original Message- From: Paul Kukiel [mailto:kuki...@gmail.com] Sent: Thursday, 14 July 2011 8:55 AM To:

[cfaussie] Re: ColdFusion 9 Server Memory Issues

2011-07-13 Thread Carl
On Jul 14, 11:40 am, Sean Corfield seancorfi...@gmail.com wrote: On Wed, Jul 13, 2011 at 4:40 AM, Kai Koenig k...@koeni.de wrote: FWIW - tried the G1 collector on Java 6 (_16 release iirc) for a large deployment on Win64/CF 8 for a while and had regular fatal JVM crashes. I'm pretty

RE: [cfaussie] Re: CreateObject of itself

2011-07-13 Thread Steve Onnis
Ok so if i have a cfc named FooBar.cfc, from within that CFC i can make a call new FooBar() and i will have a new instance of the CFC? -Original Message- From: Paul Kukiel [mailto:kuki...@gmail.com] Sent: Thursday, 14 July 2011 8:55 AM To: cfaussie Subject: [cfaussie] Re: CreateObject of