LaudCache 1.2.0

dotnet add package LaudCache --version 1.2.0
                    
NuGet\Install-Package LaudCache -Version 1.2.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="LaudCache" Version="1.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="LaudCache" Version="1.2.0" />
                    
Directory.Packages.props
<PackageReference Include="LaudCache" />
                    
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 LaudCache --version 1.2.0
                    
#r "nuget: LaudCache, 1.2.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.
#:package LaudCache@1.2.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=LaudCache&version=1.2.0
                    
Install as a Cake Addin
#tool nuget:?package=LaudCache&version=1.2.0
                    
Install as a Cake Tool

LaudCache

A Redis caching layer designed for seamless EntityFrameworkCore integration and more

Usage:

  • Setup (Startup.cs)

using LaudCache.Extensions;

namespace Example;

public class Startup
{


    private IConfiguration Configuration { get; }

    public void ConfigureServices(IServiceCollection services)
    {

        services.AddRedis(
            address: "localhost:6379",
            defaultDatabase: 0,
            instanceName: "my-project-name"
        );

        // ... other codes ...

    }

}
  • Dependency injection (WorkerService.cs)

namespace Example.Utils;

public class WorkerService
{
    private readonly LaudCache.Cache.LaudCache _laudCache;
    private readonly ExDbContextSqlServer _dbContext;

    public WorkerService(IDbContextFactory<MembershipContextSqlServer> contextFactory,
        LaudCache.Cache.LaudCache laudCache)
    {
        _laudCache = laudCache;
        _context = contextFactory.CreateDbContext();
    }
    
    // ...
    
}

  • Actual usage (WorkerService.cs)

namespace Example.Utils;

public class WorkerService
{
    private readonly LaudCache.Cache.LaudCache _laudCache;
    private readonly ExDbContextSqlServer _dbContext;

    
    // ...
    
    // Example 1:
    
    [HttpGet]
    [Authorize]
    public IActionResult Notifications()
    {
        var username = User.Identity?.Name!;
        
        var notifications = _dbContext.Notifications
            .Where(n => n.Username == username)
            .WithCache(_laudCache, "my-cache-key", TimeSpan.FromHours(4))
            .ToListAsync();
            
        return new Ok(notifications);
    }
    
    
    // Example 2:
     
    [HttpGet]
    public async Task<IActionResult> Card()
    {
        var username = User.Identity?.Name!;
        
        var cacheKey = "my-cache-key-2";
        
        var data0 = _laudCache.Get<object>(cacheKey);
        if (data0 != null) return Ok(data0);

        var card = await _membershipContext
            .Cards
            .Where(m => m.CardNo == username)
            .FirstOrDefaultAsync();

        if (card == null) return NotFound();

        _distributedCacheHelper.Add(cacheKey, card, TimeSpan.FromHours(12);
        
        
        return Ok(card);
    }
    
}

Product Compatible and additional computed target framework versions.
.NET 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
1.2.0 126 4/1/2026
1.1.1 201 1/22/2025
1.1.0 155 1/22/2025
1.0.0 186 1/4/2025