Developing high performance applications is not an easy task. It is not only from a programming perspective challenging but as well knowing all the possible optimizations is almost impossible. Using compiler optimizations is a first step but even those can't fix every weirdness the developer programmed. In this blog post I want to give an example for a different possible performance optimization that you can add to your code with few modifications. ### RAM -- random is not sequential ### Even though one might think access to main memory is possible with constant cost, almost everybody heard of the so-called...