Skip to content

Commit 0bb3f89

Browse files
Performance improvement for .NET 9.0+
1 parent 8ef13b7 commit 0bb3f89

File tree

6 files changed

+16
-66
lines changed

6 files changed

+16
-66
lines changed

bus/EasyCaching.Bus.Zookeeper/DefaultZookeeperBus.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class DefaultZookeeperBus : EasyCachingAbstractBus
4141
/// <summary>
4242
/// lock
4343
/// </summary>
44-
private readonly object _zkEventLock = new object();
44+
private readonly Lock _zkEventLock = new Lock();
4545

4646
/// <summary>
4747
/// The serializer.
@@ -214,7 +214,7 @@ private async Task SubscribeDataChange(WatchedEvent @event)
214214
/// <returns></returns>
215215
private async Task ReZkConnect()
216216
{
217-
if (!Monitor.TryEnter(_zkEventLock, _zkBusOptions.ConnectionTimeout))
217+
if (!_zkEventLock.TryEnter(_zkBusOptions.ConnectionTimeout))
218218
return;
219219
try
220220
{
@@ -234,7 +234,7 @@ private async Task ReZkConnect()
234234
}
235235
finally
236236
{
237-
Monitor.Exit(_zkEventLock);
237+
_zkEventLock.Exit();
238238
}
239239
}
240240

bus/EasyCaching.Bus.Zookeeper/EasyCaching.Bus.Zookeeper.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="../../build/version.props" />
44
<Import Project="../../build/releasenotes.props" />
55
<PropertyGroup>
6-
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
6+
<TargetFrameworks>netstandard2.0;net6.0;net9.0</TargetFrameworks>
77
<Owners>ncc;Catcher Wong</Owners>
88
<Authors>ncc;Catcher Wong</Authors>
99
<VersionPrefix>$(EasyCachingZookeeperBusPackageVersion)</VersionPrefix>

src/EasyCaching.Core/DistributedLock/DistributedLock.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace EasyCaching.Core.DistributedLock
99
public class DistributedLock : MemoryLock
1010
{
1111
private readonly IDistributedLockProvider _provider;
12-
private readonly object _syncObj = new object();
12+
private readonly Lock _syncObj = new Lock();
1313
private readonly DistributedLockOptions _options;
1414
private readonly ILogger _logger;
1515

src/EasyCaching.Core/DistributedLock/MemoryLock.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class MemoryLock : IDistributedLock
1616

1717
public string Key { get; }
1818

19-
private readonly object _syncObj = new object();
19+
private readonly Lock _syncObj = new Lock();
2020

2121
public MemoryLock(string key) => Key = key;
2222

src/EasyCaching.Core/DistributedLock/RefCounter.cs

-59
This file was deleted.

src/EasyCaching.Core/EasyCaching.Core.csproj

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
<Import Project="../../build/version.props" />
33
<Import Project="../../build/releasenotes.props" />
44
<PropertyGroup>
5-
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
5+
<TargetFrameworks>netstandard2.0;net6.0;net9.0</TargetFrameworks>
6+
<LangVersion>Preview</LangVersion>
67
<Owners>ncc;Catcher Wong</Owners>
78
<Authors>ncc;Catcher Wong</Authors>
89
<VersionPrefix>$(EasyCachingCorePackageVersion)</VersionPrefix>
@@ -36,12 +37,20 @@
3637
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.0" />
3738
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.0" />
3839
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="4.7.0" />
40+
<PackageReference Include="Backport.System.Threading.Lock" Version="1.0.1" />
3941
</ItemGroup>
4042

4143
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
4244
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" />
4345
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
4446
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
47+
<PackageReference Include="Backport.System.Threading.Lock" Version="1.0.1" />
48+
</ItemGroup>
49+
50+
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
51+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
52+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
53+
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
4554
</ItemGroup>
4655

4756
<ItemGroup>

0 commit comments

Comments
 (0)