Howdy fusioneers,

I know theoretically the size of an array is limited by the available
memory, but what other considerations need to be made when working with
large arrays?

I have a template that works with an array of about 6000 elements.  No
matter for how long I set the time out, the dern thing still conks out after
a few minutes.

The available physical memory doesn't go below 180K running CF 4.0.1 on NT4,
SP5, IIS 4.  The code is good and was running in production until a couple
weeks ago.  At some point the database outgrew the methods.

Any hints, suggestions, or job offers?  And will the server setting time out
limit override a url ?timeoutrequest= or the other way around?

TIA


Sean
[EMAIL PROTECTED]



<tip type=forms>
This isn't too complicated but seems to be one of the frequenty asked
questions.

You cannot do this:
<CFIF foo>
        <FORM some action>
<CFELSE>
        <FORM some other action>
</CFIF>
<!--- Jolly fun form bits here --->

</FORM>

Bad form to break up the form tags.

But you can do this:

<FORM
        <CFIF bar>
                some action
        <CFELSE>
                some other action
        </CFELSE>
>

<!--- Jolly fun form bits here --->

</FORM>

</tip>











</tip>
------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to