Code Monkey home page Code Monkey logo

Comments (6)

jodydonetti avatar jodydonetti commented on June 10, 2024

Hi @JarrodOsborne and thanks for using FusionCache!

Currently there's no way to know that when getting a value, but let me ask how are you approaching the cloning itself? Maybe I can think of something, you are not the first one to think about wanting to clone objects you got back from the cache.

from fusioncache.

jodydonetti avatar jodydonetti commented on June 10, 2024

Closing as there has not been a response.

from fusioncache.

JarrodOsborne avatar JarrodOsborne commented on June 10, 2024

Hi @jodydonetti
I ended up writing a wrapper around IMemoryCache which does a clone,

public bool TryGetValue(object key, out object value)
{
    var exists = _memoryCache.TryGetValue(key, out object innerValue);
    value = innerValue?.Clone();
    return exists;
}

and providing this version of IMemoryCache to FusionCache.

The clone is just a JSON copy

public static T Clone<T>(this T source) where T : class
{
    return JsonConvert.DeserializeObject<T>(JsonConvert.SerializeObject(source, _settings), _settings);
}

from fusioncache.

jodydonetti avatar jodydonetti commented on June 10, 2024

Hi @JarrodOsborne , oooh that is smart, I haven't thought about it!

Glad it worked out in the end.

from fusioncache.

JarrodOsborne avatar JarrodOsborne commented on June 10, 2024

@jodydonetti Going back to the original question, would this feature be considered in the future? I understand it's a little niche, but now I'm at the stage where I'm logging the duration of my cache operations and it would be nice to know what layer I'm hitting.
Unless there's another way to achieve this that I don't know about?

from fusioncache.

jodydonetti avatar jodydonetti commented on June 10, 2024

Hi @JarrodOsborne , I'm not planning it right now, but I'm still thinking about how it could be made without a major change in the api surface area.

Do you have any hints or ideas you'd like to share?

from fusioncache.

Related Issues (20)

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.