【C#】AssemblyLoadContext 加载程序集

使用 .NET Core 3.0 的 AssemblyLoadContext 实现插件热加载

一般情况下,一个 .NET 程序集加载到程序中以后,它的类型信息以及原生代码等数据会一直保留在内存中,.NET 运行时无法回收它们,如果我们要实现插件热加载 (例如 Razor 或 Aspx 模版的热更新) 则会造成内存泄漏。在以往,我们可以使用 .NET Framework 的 AppDomain 机制,或者使用解释器 (有一定的性能损失),或者在编译一定次数以后重启程序 (Asp.NET 的 numRecompilesBeforeAppRestart) 来避免内存泄漏。

因为 .NET Core 不像 .NET Framework 一样支持动态创建与卸载 AppDomain,所以一直都没有好的方法实现插件热加载,好消息是,.NET Core 从 3.0 开始支持了可回收程序集 (Collectible Assembly),我们可以创建一个可回收的 AssemblyLoadContext,用它来加载与卸载程序集。

AssemblyLoadContext存在主要用于提供程序集加载隔离,不提供Appdomain中的安全边界(隔离),.net core安全边界(隔离)由进程负责。 它允许在单个进程中加载同一程序集的多个版本。 它将替换 .NET Framework 中的多个实例提供的隔离机制 AppDomain

.net core 程序 默认的采用AssemblyLoadContext.Default 加载程序依赖项。

因此我们可以通过AssemblyLoadContext.Default.Assemblies。来获取当前程序集的所有的依赖项。

AppDomain方法:

  • 获取所有程序集
过时:var assembliesInAppDomain = AppDomain.CurrentDomain.GetAssemblies();
新:var assembliesInAssemblyLoadContext = AssemblyLoadContext.Default.Assemblies;
  • 加载一个程序集
过时:AppDomain.CurrentDomain.Load(AssemblyName.GetAssemblyName("path"));
新:AssemblyLoadContext.Default.LoadFromAssemblyName(AssemblyName.GetAssemblyName("path"));
  • 加载一个程序集 路径或者字节数组:
过时:AppDomain.CurrentDomain.Load(File.ReadAllBytes("path"));
新:AssemblyLoadContext.Default.LoadFromStream(File.OpenRead("path"));
// or
AssemblyLoadContext.Default.LoadFromAssemblyPath("path");

 新建一个Context并且把程序集加载进 这个Context中

 AssemblyLoadContext pluginAssemblyLoadContext = new("pluginAssemblyLoadContext", true);//输入Context名称,指定是否可以卸载
 Assembly assembly = pluginAssemblyLoadContext.LoadFromAssemblyPath(item);

 

posted @ 2021-11-06 16:40  小林野夫  阅读(2804)  评论(0编辑  收藏  举报
原文链接:https://www.cnblogs.com/cdaniu/