It may be the fact that you're now using CFHTTP instead of CFX_HTTP. Many of
us have experienced similiar problems with CFHTTP -- do you use it quite
heavily on your site? I've switched all of my CFHTTP calls over to ASPHTTP
(www.serverobjects.com), a COM object you can access with CFOBJECT. There's
another one out there called ASPTEAR that works well (I hear).

Regards,
Chris
----- Original Message -----
From: "Jim Gurfein" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, November 29, 2000 1:40 PM
Subject: RE: Single Thread


> We've been having a terrible time with CF crashing since installing
> 4.51sp2. Here's what we've done:
>
> 1) Locked all session variables
> 2) Changed all CFX_http to CFHTTP
> 3) Changed all CFX_UUID to #createuuid()#
> 4) Reset CF to use "single threaded sessions"
>
> We put out about 200,000 pages per day on our server. Before the upgrade
to
> 4.51 (4.01) the system was fairly stable, but since then we've experienced
> horrible crashes every 6 hours. Finally, we set "single threaded sessions"
> and seem to be more stable (running about 150mg of memory climbing slowly)
>
> If anyone has any Ideas, we'd love to hear them!!!
>
>
>
>
> > > Is there any performance hit by setting CF to Single Thread?
> >
> >If you're referring to the "single threaded sessions" option within the
> >Locking section, there is a potential performance hit. If, for example,
> >you're using frames within an application, and you're using CF to
generate
> >the content within more than one of those frames, those CF scripts can't
run
> >concurrently. I imagine that handling the request queue in this case
might
> >get a bit complicated.
> >
> >On the other hand, using single-threaded sessions means that you won't
have
> >to worry about using CFLOCK with session variables, so if you have an
> >existing CF app which uses session variables without CFLOCK, it'll
probably
> >run better under load with the single-threaded session option selected.
> >
> >Dave Watts, CTO, Fig Leaf Software
> >http://www.figleaf.com/
> >voice: (202) 797-5496
> >fax: (202) 797-5444
> >~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> >Structure your ColdFusion code with Fusebox. Get the official book at
> >http://www.fusionauthority.com/bkinfo.cfm
> >
> >Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> >Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
>
> Sincerely yours,
>
> Jim Gurfein
> President, CEO
> RestaurantRow.com, Inc.
> http://www.restaurantrow.com
> 914.921.3200 ext 101
> 914.921.9190 fax
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> Structure your ColdFusion code with Fusebox. Get the official book at
http://www.fusionauthority.com/bkinfo.cfm
>
> Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
> Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to