Dave, I strongly recommend page level caching whenever possible. If your requirments will let you generate the html files on a schedule basis, do it. It may add on a little to your development time, but the speed increases will be remarkable.
If you dont want to get too complex with generating flat files, you can store your pages in application scope. I like to cache them into app scope and timestamp the cache. So you only regenerate a single page when a user requests it (rather than recompile the entire site) and only when the cacheTime has expired. Then I like follow this with database level caching with materialized views. You may want to add another GB of RAM though. 1GB of RAM is ok, but 2 is better and 4 would be money. RAM is so inexpensive now, that you should code to use it. -Adam On Wed, 30 Mar 2005 12:00:08 -0600, Dave Phillips <[EMAIL PROTECTED]> wrote: > Calvin, > > Ahh, good point. Here you go: > > Pentium 4 3.0Ghz HyperThreading processor > 1 Gig of RAM > Windows Server 2003 > SQL Server 7 (on a separate server) > > The sql calls for each page that's loading aren't too many. > > I'm wondering how the 'concurrent requests' setting needs to be set as well. > It defaults to 8. That doesn't seem like too many. > > Another thought I had was to have a separate process that generates an HTML > file with the results, and then have all the clients loading the HTML file > instead of directly loading a .CFM file. What are your thoughts on that? > > Sincerely, > > Dave Phillips > > -----Original Message----- > From: Calvin Ward [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 30, 2005 11:33 AM > To: CF-Talk > Subject: RE: CFMX 7 ENT Configuration Assistance? > > We'll need to have more details like number of processors, amount of > physical memory, operating system, etc. Also what database/external > resources you are connecting to might also be useful. > > - Calvin > > -----Original Message----- > From: Dave Phillips [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 30, 2005 11:45 AM > To: CF-Talk > Subject: CFMX 7 ENT Configuration Assistance? > > Hi folks, > > I'm bringing up a new dedicated server for an application I've developed and > wanted to get some feedback on configuration. I'm running MX 7 Enterprise. > > My application could have as many as 500-1000 people hitting the site at the > same time (CF pages). I'm wondering what settings you would recommend to > handle this load. Any recommendations you have for me? > > Thanks! > > Sincerely, > > Dave Phillips > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200753 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

