Git Product home page Git Product logo

anabasis.methodcache.fody's Introduction

Anabasis.MethodCache.Fody

A method cache Fody weaver which emulate PostSharp Caching API. Cache key builder and cache store are implementations so the weaving is much about fowarding the method context to them, allowing maximum flexibility. It handles Task, ValueTask, Stream and IEnumerable (with a IValueAdapter to be provided) cache values and have an aspnet DI API. See the test cover for specific examples. Default cache store implementation use .NET MemoryCache.

Anabasis.MethodCache.Fody

NuGet

Anabasis.MethodCache.AspNet

NuGet

See the samples for some idea of what the API provide.

Another go at method caching weaving using IMemoryCache => SpatialFocus.MethodCache.Fody

Usage

See also Fody usage.

NuGet installation

PM> Install-Package Fody
PM> Install-Package Anabasis.MethodCache.Fody

Add to FodyWeavers.xml

Add <Anabasis.MethodCache/> to FodyWeavers.xml

<Weavers>
    <Anabasis.MethodCache/>
</Weavers>

Overview

Before weaving:

public class Sample
{
    [Cache]
    public string SampleTest(int a, string b)
    {
        return a + b;
    }
}

After weaving:

public class Sample
{
    [Cache]
    public string SampleTest(int a, string b)
    {
        var cacheKey = CachingServices.KeyBuilder.CreateKey("SampleNamespace.Sample.SampleTest", new[] { "a", "b" }, new object[] { a, b });

        if (CachingServices.Backend.TryGetValue<string>(cacheKey, out var cachedValue))
        {
            return cachedValue;
        }

        var result = a + b;

        CachingServices.Backend.SetValue(cacheKey, result);

        return result;

    }
}

anabasis.methodcache.fody's People

Contributors

thomasraynal avatar

Stargazers

 avatar

Watchers

 avatar

anabasis.methodcache.fody's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.