Typo, sorry ..... I meant to say "null", not "bull"

OK, scenario.........

// Object iVar
Object _myObject;

// Lazy initialized object, gets created, fetched, whatever and cached when the getter is accessed the first time
public Object myObject() {
        if ( _myObject == null ) {
                _myObject = ......    // Initialize the object here
        }
}



// AppendToresponse
public void appendToResponse( WOResponse r, WOContext c ) {

        // Let the page get generated
        super.appendToResponse( r, c );

// Set myObject reference to null after page appendToResponse so it can be garbage collected
        _myObject = null;
}

HTH,

Regards, Kieran


On Aug 25, 2006, at 2:11 PM, Ute Hoffmann wrote:

Hallo Kieran,
Thank you very much, this makes sense, just a dummy question:
How do I set a object to pull after append To Response is complete?

Regards,
Ute

Am Freitag, 25.08.06 um 18:46 Uhr schrieb Kieran Kelleher:

AFAIK, the page cache contains WOComponents and the template/wod. The final HTML is generated each time the response is generated. If you have memory expensive objects on a page, have them created via lazy initialization and set the object to bull AFTER append to response is complete. Then the memory expensive objects are no longer referred to by the page WOComponent instance in the page cache.

Does that make sense?

Regards, Kieran


On Aug 25, 2006, at 10:39 AM, Ute Hoffmann wrote:

Hallo,
just a question for clarification again. In my app there are some big pages (containing a lot of data and html). In the page cache, will there be only saved a reference and the template or will the html-page with complete content be saved or is it completely different?

Follow up: If a database fetch was for a page that is still in the pageCache of an application, is the ec of this database fetch eligible for garbage collection (if it holds only the data for this singe page) or will it stay around until the page it was originally used for is out of the pageCache?

Can someone give me some enlightenment here, please?

Thanks a lot!

Ute

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/kieran_lists %40mac.com

This email sent to [EMAIL PROTECTED]



_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to