Git Product home page Git Product logo

Comments (3)

Sewer56 avatar Sewer56 commented on June 3, 2024 1

I'm surprised this (overwriting expiration time) isn't a feature of Akavache personally.

There's some good use cases for this, as you can effectively set up a maximum lifetime for a given object but keep extending it for as long as you need it.

In my case, for example, I can determine I can keep an object for longer from a result of another API call; getting and then re-inserting it sounds silly and inefficient.

In any case, you can use a raw SQL query in the meantime; it's the only reflection-free method I can think of:

/// <summary>
/// Refreshes the expiration date of a given key.
/// </summary>
/// <param name="key">The key to be refreshed.</param>
/// <param name="newExpiration">New timespam of expiration relative to current.</param>
public void Refresh(string key, TimeSpan newExpiration)
{
    var expiration = _cache.Scheduler.Now + newExpiration;
    _cache.Connection.Execute($"UPDATE CacheElement SET Expiration='{expiration.Ticks}' WHERE Key='{key}'");
}

from akavache.

anaisbetts avatar anaisbetts commented on June 3, 2024

This would be a good feature to add

from akavache.

cristhian-zarate avatar cristhian-zarate commented on June 3, 2024

I would like to add a use case. Similar to @Sewer56, I need to refresh the TTL of records when being accessed, but assign them the same expiration period they had before.
Unfortunately, I haven't been able to find a workaround while using the BlobCache.Secure location, because it does not expose the Connection property. (I opened a discussion thread asking if there is a way to find the expiration of a record when using BlobCache.Secure)
So, for me it would be useful to have a method like GetObjectAndRefresh<T>(string) and not have to potentially look up the Expiration of a record while reading its value and then inserting the record with its TTL again.

from akavache.

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.