there isn't a way to see what each scope is using - you can monitor
JVM usage. Java is usually pretty good at handling its own memory, if
you're interested in seeing it you can use the Java ServiceFactory;

<cfset  runtimeObj = CreateObject("java","java.lang.Runtime").getRuntime()>
                
<cfset totalMemory = runtimeObj.totalMemory() / 1024 / 1024>
<cfset freeMemory = runtimeObj.freeMemory() / 1024 / 1024>
<cfset maxMemory = runtimeObj.maxMemory() / 1024 / 1024>

It's also something I've built into a tool I'm currently working on
at, http://www.beynon.org.uk/cfhealthmon/ for monitoring multiple CF
servers

john.


On 6/24/05, Johnny Le <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> Where can I go to find out how much memory my server dedidate to session, 
> application, and server scope variables?  and how much my site has used up? 
> and what is the percentage of usage that I should start worrying about?  I 
> know that Fusebox 4.1 write a lot of stuff to application scope.
> 
> Johnny
> 
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
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:210468
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

Reply via email to