mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 17:08:47 +08:00
Added lock on md5 variable to avoid concurrent hash generations for feature list. (#8697)
This commit is contained in:
parent
9122abbdec
commit
bf0c71c4f0
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user