AopCache 0.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package AopCache --version 0.1.0
NuGet\Install-Package AopCache -Version 0.1.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="AopCache" Version="0.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AopCache --version 0.1.0
#r "nuget: AopCache, 0.1.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.
// Install AopCache as a Cake Addin
#addin nuget:?package=AopCache&version=0.1.0

// Install AopCache as a Cake Tool
#tool nuget:?package=AopCache&version=0.1.0
 //接口
public interface ITestService
{
    //默认时间单位是秒,长度为0,即永不过期
    [AopCache(Key = "aaa")]
    string GetByKey();

    //设置3秒过期 这里的“{userId}”,占位符。用参数 userId 的值去替换
    [AopCache(Key = "bbb_{userId}", Length = 3)]
    string GetByKeyAndParamter(int userId);

    //设置十分钟过期 这里的“{req:Id}”,占位符。用参数 req里面的Id 的值去替换
    [AopCache(Key = "ccc_{req:Id}_{type}", Type = CacheTimeType.Minute, Length = 10)]
    Task<UserInfo> GetUserInfo(int type, Req req);
}

//实现接口
public class TestService : ITestService
{
    public string GetByKey()
    {
        return Guid.NewGuid().ToString("N");
    }

    public string GetByKeyAndParamter(int userId)
    {
        return Guid.NewGuid().ToString("N") + "---" + userId;
    }

    public async Task<UserInfo> GetUserInfo(int type, Req req)
    {
        return new UserInfo()
        {
            Id = new Random().Next(1, 100),
            Name = Guid.NewGuid().ToString("N")
        };
    }
}

//注入接口
 public IServiceProvider ConfigureServices(IServiceCollection services)
  {
        //注入打了标签的Service
        services.AddTransient<ITestService, TestService>();

        //...            

        //自定义存储 这里xxx表示 IAopCacheProvider 的实现            
        //services.AddUtilsAopCache<xxx>();    

        //使用默认的内存存储      返回IServiceProvider,由 AspectCore接管  
        return services.AddUtilsAopCacheUseDefaultMemoryProvider();
   }
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on AopCache:

Package Downloads
AopCache.Redis

AopCache 缓存存储,基于 FreeRedis 的实现

AopCache.RabbitMQ

AopCache 缓存清理触发器,基于 RabbitMQ 的实现

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.2 273 11/16/2023
2.0.1 154 9/26/2023
0.4.0.1 1,102 4/19/2021
0.4.0 726 1/22/2021
0.3.2 1,756 4/4/2020
0.3.1 812 12/27/2019
0.3.0 514 10/11/2019
0.1.1 1,372 4/2/2019
0.1.0 633 4/1/2019