Version: 2018.4
Profiling
Coroutines

Memory

How your application uses memory is a critical performance indicator, and is especially important if you want to optimize your application for platforms with limited memory resources, such as low-end mobile devices.

Profiling memory consumption

In addition to the built-in Unity Profiler, you can use the Memory ProfilerA window that helps you to optimize your game. It shows how much time is spent in the various areas of your game. For example, it can report the percentage of time spent rendering, animating or in your game logic. More info
See in Glossary
package
to diagnose memory issues in your application. For more information on how to optimize memory performance in your application, see the Memory Profiler package documentation.

For further information on best practices around memory management, see the Learn tutorial on Memory management in Unity.

Profiling
Coroutines