Added lock on md5 variable to avoid concurrent hash generations for feature list. (#8697)

This commit is contained in:
Andrea Piovanelli 2023-06-19 10:04:24 +02:00 committed by GitHub
parent 9122abbdec
commit bf0c71c4f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ namespace Orchard.Environment.Extensions {
private readonly ICacheManager _cacheManager;
private readonly IParallelCacheContext _parallelCacheContext;
private readonly IEnumerable<IExtensionLoader> _loaders;
public Localizer T { get; set; }
public ILogger Logger { get; set; }
@ -107,14 +107,16 @@ namespace Orchard.Environment.Extensions {
Logger.Information("Loading features");
// generate a cachekey by hashing the ids of all feature descriptors
var cacheKey = BitConverter.ToString(
_md5.ComputeHash(
Encoding.UTF8.GetBytes(
string.Join(";",
featureDescriptors
.Select(fd => fd.Id)
.OrderBy(x => x)))));
string cacheKey;
lock (_md5) {
cacheKey = BitConverter.ToString(
_md5.ComputeHash(
Encoding.UTF8.GetBytes(
string.Join(";",
featureDescriptors
.Select(fd => fd.Id)
.OrderBy(x => x)))));
}
var result = _cacheManager.Get(cacheKey,
true,