diff --git a/src/Orchard.Web/Modules/Orchard.MediaProcessing/Filters/MediaProcessingHtmlFilter.cs b/src/Orchard.Web/Modules/Orchard.MediaProcessing/Filters/MediaProcessingHtmlFilter.cs index a0fc09346..cdaecc6b4 100644 --- a/src/Orchard.Web/Modules/Orchard.MediaProcessing/Filters/MediaProcessingHtmlFilter.cs +++ b/src/Orchard.Web/Modules/Orchard.MediaProcessing/Filters/MediaProcessingHtmlFilter.cs @@ -25,6 +25,8 @@ namespace Orchard.MediaProcessing.Filters { private MediaHtmlFilterSettingsPart _settingsPart; private static readonly Regex _imageTagRegex = new Regex(@"]*>", RegexOptions.IgnoreCase | RegexOptions.Compiled); private static readonly ConcurrentDictionary _attributeRegexes = new ConcurrentDictionary(); + private static readonly ConcurrentDictionary> _attributeValues = + new ConcurrentDictionary>(); private static readonly Dictionary _validExtensions = new Dictionary { { ".jpeg", "jpg" }, // For example: .jpeg supports compression (quality), format to 'jpg'. { ".jpg", "jpg" }, @@ -173,11 +175,13 @@ namespace Orchard.MediaProcessing.Filters { return imgTag; } - private string GetAttributeValue(string tag, string attributeName) { - var match = GetAttributeRegex(attributeName).Match(tag); - - return match.Success ? match.Groups[1].Value : null; - } + private string GetAttributeValue(string tag, string attributeName) => + _attributeValues + .GetOrAdd(tag, _ => new ConcurrentDictionary()) + .GetOrAdd(attributeName, _ => { + var match = GetAttributeRegex(attributeName).Match(tag); + return match.Success ? match.Groups[1].Value : null; + }); private int GetAttributeValueInt(string tag, string attributeName) => int.TryParse(GetAttributeValue(tag, attributeName), out int result) ? result : 0;