Is it worth caching objects created by Delphi's Memory Manager? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T09:52:28Z http://stackoverflow.com/feeds/question/257428 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/257428/is-it-worth-caching-objects-created-by-delphis-memory-manager 5 Is it worth caching objects created by Delphi's Memory Manager? Steve 2008-11-02T21:41:37Z 2008-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#257437 4 Answer by Orion Edwards for Is it worth caching objects created by Delphi's Memory Manager? Orion Edwards 2008-11-02T21:54:32Z 2008-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#257438 0 Answer by Uwe Raabe for Is it worth caching objects created by Delphi's Memory Manager? Uwe Raabe 2008-11-02T21:55:03Z 2008-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#257439 0 Answer by Brody for Is it worth caching objects created by Delphi's Memory Manager? Brody 2008-11-02T21:56:06Z 2008-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#257449 0 Answer by Dana the Sane for Is it worth caching objects created by Delphi's Memory Manager? Dana the Sane 2008-11-02T22:02:04Z 2008-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#257467 14 Answer by gabr for Is it worth caching objects created by Delphi's Memory Manager? gabr 2008-11-02T22:14:44Z 2008-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#257612 12 Answer by Barry Kelly for Is it worth caching objects created by Delphi's Memory Manager? Barry Kelly 2008-11-03T00:01:50Z 2008-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#257654 2 Answer by Brent Rockwood for Is it worth caching objects created by Delphi's Memory Manager? Brent Rockwood 2008-11-03T00:42:09Z 2008-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>