I'm not doing any cache, it's pure assetbundle load and storing references in Dictionaries.
One thing to get used to when starting VAM (especially if you code/do big scenes), is to hit hard reset pretty much all the time. The assetbundle system is handle by Unity and the way VAM handles it is quite strange... I've had a shit ton of problems with assetbundles/assets from assetbundles being locked into memory for whatever reason.
To updated plugins in your scene,
use that method. It shouldn't behave differently than your previous version when loading it.
Also, very quickly, I understood VAM is quite bad at managing memory. More or less, I never play/work on stuffs "back to back".
Code a plugin with assetbundle?
- Make my default working scene
- Save, test plugin.
- Modify code, reload plugin
- Save scene, hard reset, reload scene
- Rinse and repeat
Playing a big scene from a cool creator?
- Load scene once, let everything cache
- Hard reset
- Reload scene and play
- After scene playback, hard reset
Most of the problems I often see/do support for on the forums, are people playing an hour or more, loading dozens of scene back to back which makes the game perform worse and worse. Also, plugins can contribute to memory issues, as there are people probably not optimizing enough or forgetting about releasing assetbundles properly.
With the hard reset method, you can play/work/code on VAM for 4,5,6 hours or more without ever having issues or a crash to desktop.
If you don't, you will have problems.
You will eventually even witness some weird stuffs like your scene behaving super weird on animations or characters, and simply exiting the game and restarting it will fix the problem.
I never found reasons or explainations for this, having a very "tidy" way of working with VAM makes everything work nicely. If you don't, you will probably end up smashing your head against the wall (like I did several times over the years before understanding the phenomenon ^^)