Los*_*les 14 c# service razorengine
目前,我使用RazorEngine v2.1作为后台进程的一部分,该进程发送模板化电子邮件(数千个).为了加快速度,模板使用md5 sum作为名称进行编译.这使得当模板被更改时,它被重新编译,并且使用该模板的所有电子邮件都能够使用相同的编译模板.我在列表中跟踪已编译模板的名称,以便我知道何时再次调用编译(并执行其他一些操作).
问题:我发现经过很长一段时间后,经过大量的模板修改,所有这些缓存的编译模板可能仍然在内存中,因为它看起来像是存储在一个dynamic.对于这个可能一次运行几个月而不重启的特定进程,如果所有以前版本的模板仍然存在,这可能构成严重的内存泄漏.
问题:是否有办法取消缓存旧模板,以便它们不再闲置在dynamic?
例如,如果我能够自己保留已编译的模板对象并在我想使用它们时将它们传递到RazorEngine中,我可以决定何时将它们抛出并消除内存泄漏.然而,如果RazorEngine已经解决了这个问题,那么了解它也会很方便,因为我在互联网上找不到很多关于这个特定问题的引用.关于为什么应该使用编译模板来减少内存使用量的原因有很多,但我很难找到任何关于在长期应用程序中累积的大量未使用的编译模板的信息.
编辑:我刚刚读了一些关于缓存是如何工作的,如果使用不同的模板传入相同的名称,它将重新缓存它并丢弃旧的.然而,这里的问题仍然存在,因为随着时间的推移,将添加和删除电子邮件,并且随着时间的推移,所有旧的删除的电子邮件仍将存在(即使它不会存储模板的每个版本的副本).
回答这个,因为它似乎仍然适合某些人.(https://github.com/Antaris/RazorEngine/issues/232#issuecomment-128802285)
对于这个可能一次运行几个月而不重启的特定进程,如果所有以前版本的模板仍然存在,这可能构成严重的内存泄漏.
当您更改并重新编译模板时,您会发生内存泄漏,因为您无法卸载已加载的程序集(RazorEngine会在后台编译并加载它).
真正释放内存的唯一方法是重新加载AppDomain或重新启动进程.
其他答案似乎谈论了更新版本,它们可以防止默认配置中的内存泄漏(让您意识到问题)并需要一些自定义配置才能使用其他模板代码重新编译密钥.请注意,所有其他答案实际上会增加内存消耗!
matthid,RazorEngine的贡献者
我最近升级到RazorEngine(3.6.1)的最新稳定版本,由于所有更改,我清除缓存的策略不再有效.很多事情都发生了变化,这个项目的文档不仅已经过时,而且还是从作者的角度出发,从而导致用户体验不佳.
这是我使用3.6.1清除所有缓存模板的当前代码.
public static class TemplateManager
{
static IRazorEngineService Service { get; set; }
static TemplateServiceConfiguration Configuration { get; set; }
static TemplateManager()
{
Configuration = new TemplateServiceConfiguration()
{
// setting up our custom template manager so we map files on demand
TemplateManager = new MyTemplateManager()
};
Service = RazorEngineService.Create(Configuration);
Engine.Razor = Service;
}
/// <summary>
/// Resets the cache.
/// </summary>
public static void ResetCache()
{
Configuration.CachingProvider = new RazorEngine.Templating.DefaultCachingProvider();
}
/// <summary>
/// Compiles, caches and parses a template using RazorEngine.
/// </summary>
/// <param name="templateType">Type of the template.</param>
/// <param name="anonymousType">Type of the anonymous object.</param>
/// <param name="cachedEnabled">true to enabled caching; false otherwise</param>
/// <returns></returns>
public static string GetTemplate<T>(EmailTemplateType templateType, T anonymousType, bool cachedEnabled = true)
{
string templateName = templateType.ToString();
if (cachedEnabled == false)
ResetCache();
// pre-compile, cache & parse the template
return Engine.Razor.RunCompile(templateName, null, anonymousType);
}
}
public enum EmailTemplateType
{
ForgotPassword,
EmailVerification
}
public class MyTemplateManager : ITemplateManager
{
public ITemplateSource Resolve(ITemplateKey key)
{
string file = HttpContext.Current.Server.MapPath(string.Format("~/EmailTemplates/{0}.cshtml", key.Name));
return new LoadedTemplateSource(System.IO.File.ReadAllText(file), file);
}
public ITemplateKey GetKey(string name, ResolveType resolveType, ITemplateKey context)
{
return new NameOnlyTemplateKey(name, resolveType, context);
}
public void AddDynamic(ITemplateKey key, ITemplateSource source)
{
throw new NotImplementedException("dynamic templates are not supported!");
}
}
Run Code Online (Sandbox Code Playgroud)
这是Asp.Net MVC中代码的示例用法:
var emailBody = TemplateManager.GetTemplate(EmailTemplateType.ForgotPassword, new
{
SiteUrl = Url.Action(MVC.Home.Index(), protocol: Request.Url.Scheme),
SiteFriendlyName = SiteSettings.Instance.DomainName.FriendlyName,
PasswordResetLink = Url.Action(MVC.Account.ActionNames.ResetPassword, MVC.Account.Name, new { userId = user.Id, code = code }, protocol: Request.Url.Scheme),
NotRequestedUrl = Url.Action(MVC.Account.ActionNames.PasswordResetNotReqeuested, MVC.Account.Name, new { userId = user.Id, requesterIpAddress = WebUtils.GetClientIPAddress(), code = code }, protocol: Request.Url.Scheme)
},
/* this setting allows me to disable caching during development */
!SiteSettings.Instance.EmailSettings.DebugEmailTemplates );
// I could also have a button on an admin page that executed this code to manually reset the cache in production.
TemplateManager.ResetCache();
Run Code Online (Sandbox Code Playgroud)
RazorEngine 似乎在 TemplateService 实例内存储编译模板的缓存。因此,您可以不时重新创建 TemplateService 的新实例以删除所有缓存的模板。
您还可以考虑使用我自己的库,该库基于 RazorEngine 并实现具有过期功能的自定义缓存机制:http://www.nuget.org/packages/Essential.Templated.Razor
| 归档时间: |
|
| 查看次数: |
10383 次 |
| 最近记录: |