Profiler - Method cache question

For questions and postings not covered by the other forums
ConvertFromOldNGs
Posts: 5321
Joined: Wed Aug 05, 2009 5:19 pm

Profiler - Method cache question

Postby ConvertFromOldNGs » Fri Aug 07, 2009 1:00 pm

by Profiler_novice >> Thu, 27 Jul 2006 22:00:36 GMT

Extract from the profiler:

------------------------------------------------------
Cache limit: 4000000
Maximum cache size: 3999888

No cache overruns
------------------------------------------------------

Does this mean that the cache size is perfectly set by either luck or good planning? or rather that method cache limit is being hit just another setting is possibly stopping it from being exceeded?

If the later is true does this have a performance implication on multi app server systems?

Thanks for any help, Im a little unsure what (if anything) all this means.

ConvertFromOldNGs
Posts: 5321
Joined: Wed Aug 05, 2009 5:19 pm

Re: Profiler - Method cache question

Postby ConvertFromOldNGs » Fri Aug 07, 2009 1:00 pm

by dcooper@jade.co.nz >> Fri, 28 Jul 2006 1:12:35 GMT

The "maximum cache size" means that the cache did in fact grow to this size (which is roughly 4MB, which is also the cache limit). This is a normal thing to see. For example, if you're running your system for a while and it executes 4MB or so of different methods, then your method cache will have naturally grown to the 4MB cache limit. The key thing in terms of performance is the "no cache overruns" - this is good. When JADE executes a method, the Interpreter needs to bring that method into its method cache (if it isn't already there). If it needs to bring the method into cache, it will grow the cache (assuming it's not already at its limit) or swap out enough old and not-in-use methods to make room. The key thing in terms of "overruns" is the not-in-use bit. If a method is active in the current call stack, the Interpreter cannot swap it out of cache. So if you have a call stack (for example) that requires more than 4MB of methods, the Interpreter will temporarily grow the method cache to accomodate that call stack (even if this is more than the cache limit) and then reduce it back down to the cache limit when the call stack unwinds. This will show up in the profiler as a cache overrun and the profiler output will give you details of the methods that caused the overrun. In the case of a cache overrun, the profiler will report a maximum cache size of more than the cache limit, in which case the maximum cache size is saying "if your cache limit was set to this, you wouldn't have had any overruns".

In terms of multiple application servers, every *node* in a JADE system (ie: application servers, the database server and standard [aka "fat" or two-tier] clients) has a method cache that is controlled by the settings in whatever ini file the node is looking at. So the above behaviour applies to each node in a JADE system.

Dean.

ConvertFromOldNGs
Posts: 5321
Joined: Wed Aug 05, 2009 5:19 pm

Re: Profiler - Method cache question

Postby ConvertFromOldNGs » Fri Aug 07, 2009 1:00 pm

by Profiler_amateur >> Fri, 28 Jul 2006 3:44:24 GMT

Thanks alot Dean, that answers everything I wanted to know about the method cache.


Return to “General Discussion”

Who is online

Users browsing this forum: No registered users and 40 guests