Comment on Affinity’s Adobe-rivaling creative suite is now free for six months
bamboo@lemm.ee 3 months agoBad memory management can actually slow down applications significantly. Allocating memory is actually a fairly expensive operation. So much that high performance software actually uses a bunch of tricks to avoid extra allocations where possible. Additionally, accessing memory is actually kinda slow for a CPU, and the CPU often has to sit around for many clock cycles waiting for memory to be retrieved if it’s not in the CPU’s cache. If your main data can be stored more compactly, more of that data can fit in your CPU’s cache, reducing that idle time.
helenslunch@feddit.nl 3 months ago
Who said anything about “bad” memory management?
bamboo@lemm.ee 3 months ago
Bad memory management includes allocating memory you aren’t actually making use of.
helenslunch@feddit.nl 3 months ago
How is that bad?
bamboo@lemm.ee 3 months ago
Try reading two posts up where I explained it