When you open and read files from a program the OS (kernel) will typically cache part or all of those files in memory. This is to speed up subsequent reads of that file since disk access is slow. “preload” seems to be making use of that feature. The kernel maintains this cache and evicts (unloads) things from it as needed. You don’t need to worry about it.