Coder Social home page Coder Social logo

Time To Live about hive HOT 6 CLOSED

isar avatar isar commented on July 21, 2024 7
Time To Live

from hive.

Comments (6)

simc avatar simc commented on July 21, 2024 1

Yes that looks promising but how would you handle a TTL greater than the runtime of the app?
It would need to be persisted and checked when the app is started again.

from hive.

simc avatar simc commented on July 21, 2024

This is a very good idea. I don't know if it is possible but I'll think about how to implement this.

from hive.

Solido avatar Solido commented on July 21, 2024

I've tinkered with something like this :

class Ephemere {
  final Duration defaultDuration;
  final Map<Object, dynamic> _cache;

  Ephemere(this.defaultDuration) : _cache = Map();

  dynamic get(Object key, Function defaultValue) {
    final rs = _cache[key] ?? defaultValue();
    return rs;
  }

  Future put(Object key, value, {Duration duration}) {
    Completer completer = Completer();
    _cache.putIfAbsent(key, () => value);

    Future.delayed(duration ?? defaultDuration, () {
      _cache.remove(key);
      completer.complete(value);
    });

    return completer.future;
  }
}

from hive.

Solido avatar Solido commented on July 21, 2024

Correct, Also I'm not sure this approach is the best when you have a huge numbers of keys ...
If you have a hash you can have an external manager with timestamp, seems more efficient.

Completers would resume on the diff time now and previously calculated expiration timestamps.

from hive.

simc avatar simc commented on July 21, 2024

Correct, Also I'm not sure this approach is the best when you have a huge numbers of keys ...
If you have a hash you can have an external manager with timestamp, seems more efficient.

I agree...

Completers would resume on the diff time now and previously calculated expiration timestamps.

Could you please explain that? I don't understand what you mean exactly.

from hive.

simc avatar simc commented on July 21, 2024

I'm going to close this for now. I think a external solution would be easier to implement...

from hive.

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.