Is it worth caching objects created by Delphi's Memory Manager? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T09:52:28Zhttp://stackoverflow.com/feeds/question/257428http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/257428/is-it-worth-caching-objects-created-by-delphis-memory-manager5Is it worth caching objects created by Delphi's Memory Manager?Steve2008-11-02T21:41:37Z2008-11-03T00:45:29Z
<p>I have an application that creates, and destroys thousands of objects. Is it worth caching and reusing objects, or is Delphi's memory manager fast enough that creating and destroying objects multiple times is not that great an overhead (as opposed to keeping track of a cache) When I say worth it, of course I'm looking for a performance boost.</p>
http://stackoverflow.com/questions/257428/is-it-worth-caching-objects-created-by-delphis-memory-manager/257437#2574374Answer by Orion Edwards for Is it worth caching objects created by Delphi's Memory Manager?Orion Edwards2008-11-02T21:54:32Z2008-11-02T21:54:32Z<p>Only a profiler will tell you. Try both approaches in a tight loop and see what comes out on top :-)</p>
http://stackoverflow.com/questions/257428/is-it-worth-caching-objects-created-by-delphis-memory-manager/257438#2574380Answer by Uwe Raabe for Is it worth caching objects created by Delphi's Memory Manager?Uwe Raabe2008-11-02T21:55:03Z2008-11-02T21:55:03Z<p>I think this depends on the code your objects will execute during create and destroy. The impact from TObject.Create and TObject.Destroy is normally neglectable and may easily be outweight by the caching overhead.</p>
<p>You should also consider that the state of an object may differ when reused from that after just being created.</p>
http://stackoverflow.com/questions/257428/is-it-worth-caching-objects-created-by-delphis-memory-manager/257439#2574390Answer by Brody for Is it worth caching objects created by Delphi's Memory Manager?Brody2008-11-02T21:56:06Z2008-11-02T21:56:06Z<p>Often the only way to tell - is to try it.</p>
<p>If current performance is adequate then you don't have much call to try and increase it. However, if you have performance issues, then some caching (or indeed some other strategies) may help.</p>
http://stackoverflow.com/questions/257428/is-it-worth-caching-objects-created-by-delphis-memory-manager/257449#2574490Answer by Dana the Sane for Is it worth caching objects created by Delphi's Memory Manager?Dana the Sane2008-11-02T22:02:04Z2008-11-02T22:02:04Z<p>You will also need some stats on how often a specific object (instance) is being used. If you're referencing the same set of data regularly, than caching may really improve performance but if the accesses are distributed across all the possible objects, than your cache miss-rate might be too high for it to be worth-while.</p>
http://stackoverflow.com/questions/257428/is-it-worth-caching-objects-created-by-delphis-memory-manager/257467#25746714Answer by gabr for Is it worth caching objects created by Delphi's Memory Manager?gabr2008-11-02T22:14:44Z2008-11-02T22:14:44Z<p>From recent testing - if object creation is not expensive (i.e. doesn't depend on external resources - accessing files, registry, database ...) then you'll have a hard time beating Delphi's memory manager. It is that fast.</p>
<p>That of course holds if you're using a recent Delphi - if not, get FastMM4 from <a href="http://sourceforge.net/projects/fastmm/" rel="nofollow">SourceForge</a> and use it instead of Delphi's internal MM.</p>
http://stackoverflow.com/questions/257428/is-it-worth-caching-objects-created-by-delphis-memory-manager/257612#25761212Answer by Barry Kelly for Is it worth caching objects created by Delphi's Memory Manager?Barry Kelly2008-11-03T00:01:50Z2008-11-03T00:01:50Z<p>Memory allocation is only a small part of why you would want to cache. You need to know the full cost of constructing a semantically valid object, and compare it with the cost of retrieving items from the cache, and not just for a micro-benchmark: cache effects (CPU cache, that is) may change the runtime dynamics in a real live running application.</p>
<p>Or to put it another way, measure it and find out. If you're not measuring, you're not engineering, just guessing.</p>
http://stackoverflow.com/questions/257428/is-it-worth-caching-objects-created-by-delphis-memory-manager/257654#2576542Answer by Brent Rockwood for Is it worth caching objects created by Delphi's Memory Manager?Brent Rockwood2008-11-03T00:42:09Z2008-11-03T00:42:09Z<p>You absolutely have to measure with real-world loads to answer questions like this. Depending on what resources are held in those objects, any resource contention, construction cost, size, etc., the answer may surprise you, and may even change depending on the nature of the load.</p>
<p>It is usually very difficult to determine where your performance issues will be without measuring.</p>