EasilyNET.MongoDistributedLock.AspNetCore 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package EasilyNET.MongoDistributedLock.AspNetCore --version 2.0.0
                    
NuGet\Install-Package EasilyNET.MongoDistributedLock.AspNetCore -Version 2.0.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EasilyNET.MongoDistributedLock.AspNetCore" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EasilyNET.MongoDistributedLock.AspNetCore" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="EasilyNET.MongoDistributedLock.AspNetCore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EasilyNET.MongoDistributedLock.AspNetCore --version 2.0.0
                    
#r "nuget: EasilyNET.MongoDistributedLock.AspNetCore, 2.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=EasilyNET.MongoDistributedLock.AspNetCore&version=2.0.0
                    
Install EasilyNET.MongoDistributedLock.AspNetCore as a Cake Addin
#tool nuget:?package=EasilyNET.MongoDistributedLock.AspNetCore&version=2.0.0
                    
Install EasilyNET.MongoDistributedLock.AspNetCore as a Cake Tool
EasilyNET.MongoDistributedLock.AspNetCore
  • EasilyNET.MongoDistributedLock.AspNetCore 让基于 EasilyNET.MongoDistributedLock 的使用更简单.

  • 注册分布式锁服务,用来配置一些基本信息

// 使用默认配置
builder.Services.AddMongoDistributedLock();

// 自定义一些配置
builder.Services.AddMongoDistributedLock(op =>
{
    op.DatabaseName = "test_locks";
    op.MaxDocument = 100;
    ...
});
  • 使用 IMongoLockFactory 来注入工厂服务
public class DistributedLockTest(IMongoLockFactory lockFactory)
{
    public async Task<dynamic> AcquireLock()
    {
        // 这里使用一个随机的ID作为锁ID,相当于其他锁中的Key.用来区分不同的业务的锁,也可以将不同的业务类型放到MongoDB中存起来,然后再使用的时候再取获取这个id
        const string lockId = "64d44afde4473b85a177084c";
        var mongoLock = lockFactory.GenerateNewLock(ObjectId.Parse(lockId));

        var acq = await mongoLock.AcquireAsync(TimeSpan.FromSeconds(5), TimeSpan.FromSeconds(0));
        try
        {
            if (acq.Acquired)
            {
                // 关键部分,它不能一次由任何服务器上的多个线程执行
                // ...
                // ...
            }
            else
            {
                // 超时!也许另一个线程没有释放锁...我们可以再试一次或抛出例外
            }
        }
        finally
        {
            // 如果(acq.Acquired)无需手动操作
            await mongoLock.ReleaseAsync(acq);
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.24.1113.100 115 6 months ago
3.24.1112.125 104 6 months ago
3.24.1107.140 101 6 months ago
3.24.1107.54 102 6 months ago
3.24.1107.34 105 6 months ago
3.24.1105.111 98 6 months ago
3.24.1103.31 111 7 months ago
3.24.1103 106 7 months ago
3.24.1031.135 100 7 months ago
3.24.1031.112 93 7 months ago
3.24.1031.104 97 7 months ago
3.24.1029.142 109 7 months ago
3.24.1025.30 103 7 months ago
3.24.1022.142 87 7 months ago
3.24.1018.204 157 7 months ago
3.24.1018.175 156 7 months ago
3.24.1018.166 146 7 months ago
3.24.1018.93 152 7 months ago
3.24.1017.42 101 7 months ago
3.24.1016.161 106 7 months ago
3.24.1015.231 103 7 months ago
3.24.1015.14 105 7 months ago
3.24.1012.114 104 7 months ago
3.24.1009.115 113 7 months ago
3.24.1008.160 103 7 months ago
3.24.1008.133 110 7 months ago
3.24.1007.185 110 7 months ago
3.24.1003.33 110 8 months ago
3.24.1002.162 116 8 months ago
3.24.929.143 120 8 months ago
3.24.929.141 104 8 months ago
3.24.929.131 101 8 months ago
3.24.929.122 93 8 months ago
3.24.926.184 97 8 months ago
3.24.926.182 93 8 months ago
3.24.926.175 108 8 months ago
3.24.924.160 108 8 months ago
3.24.924.133 121 8 months ago
3.24.924.124 109 8 months ago
3.24.924.10 107 8 months ago
3.24.924.1 104 8 months ago
3.24.923.234 125 8 months ago
3.24.923.232 129 8 months ago
3.24.923.155 107 8 months ago
3.24.919.92 121 8 months ago
3.24.914.125 122 8 months ago
3.24.914.115 124 8 months ago
3.24.914.111 120 8 months ago
3.24.911.95 130 8 months ago
3.24.908.215 100 8 months ago
3.24.904.200 104 8 months ago
3.24.828.163 134 9 months ago
3.24.820.173 114 9 months ago
3.24.814.92 132 9 months ago
3.24.812.115 122 9 months ago
3.24.802.100 93 10 months ago
3.24.801.162 99 10 months ago
3.24.801.160 98 10 months ago
3.24.801.155 100 10 months ago
3.24.730.164 98 10 months ago
3.24.730.91 93 10 months ago
3.24.724.91 93 10 months ago
3.24.718.105 123 7/18/2024
3.24.716.95 120 7/16/2024
3.24.712.94 113 7/12/2024
3.24.710.14 131 7/9/2024
3.24.709.105 130 7/9/2024
3.24.704.94 136 7/4/2024
3.24.701.90 145 7/1/2024
3.24.628.114 132 6/28/2024
3.24.627.145 122 6/27/2024
3.24.620.160 118 6/20/2024
3.24.613.115 123 6/13/2024
3.24.612.95 119 6/12/2024
3.24.528.90 123 5/28/2024
3.24.522.84 137 5/22/2024
3.24.512.213 114 5/12/2024
3.24.508.112 142 5/8/2024
2.2024.428.71 129 4/28/2024
2.2024.427.1128 129 4/27/2024
2.2.72 137 4/14/2024
2.2.71 128 4/12/2024
2.2.8 124 4/26/2024
2.2.6 120 4/10/2024
2.2.5 144 3/26/2024
2.2.4 140 3/25/2024
2.2.3 146 3/24/2024
2.2.2 147 3/21/2024
2.2.1 151 3/20/2024
2.2.0 141 3/13/2024
2.1.9 145 2/21/2024
2.1.8 143 2/18/2024
2.1.7 134 2/16/2024
2.1.6 133 2/14/2024
2.1.5 141 2/14/2024
2.1.4 151 2/9/2024
2.1.3 178 2/8/2024
2.1.2 128 2/5/2024
2.1.1.2 202 12/26/2023
2.1.1.1 137 12/26/2023
2.1.1 153 12/25/2023
2.1.0 158 12/17/2023
2.0.11 168 12/6/2023
2.0.1 165 11/15/2023
2.0.0 145 11/14/2023
1.9.1 151 11/1/2023
1.9.0 147 10/19/2023
1.9.0-preview2 126 10/12/2023
1.9.0-preview1 118 10/12/2023
1.8.9 162 10/11/2023
1.8.8 151 10/11/2023
1.8.7-rc2 122 9/21/2023
1.8.7-rc1 126 9/12/2023
1.8.6 176 8/31/2023
1.8.5 158 8/25/2023
1.8.4 169 8/24/2023
1.8.3 176 8/23/2023
1.8.2 168 8/22/2023
1.8.1 178 8/18/2023
1.8.0 190 8/15/2023
1.7.9 199 8/11/2023
1.7.8 179 8/11/2023
1.7.7 183 8/10/2023
1.7.6 202 8/9/2023
1.7.5 169 8/9/2023
1.7.4 189 8/3/2023
1.7.3 185 8/1/2023
1.7.2 180 7/31/2023
1.7.1 178 7/27/2023
1.7.0 185 7/27/2023