Code Monkey home page Code Monkey logo

Comments (3)

FoxxMD avatar FoxxMD commented on July 26, 2024

It is based on actioned events. From SubredditResources.ts

async addActionedEvent(ae: ActionedEvent) {
    const events = await this.cache.wrap(`actionedEvents-${this.subreddit.display_name}`, () => []) as ActionedEvent[];
    events.unshift(ae);
    await this.cache.set(`actionedEvents-${this.subreddit.display_name}`, events.slice(0, this.actionedEventsMax), {ttl: 0});
}

This behavior may be a result of the default cache store using lru-cache. The default max store size is 500 keys -- if there are many things being cached it may be that the KV for actioned events is being dropped because it is too infrequently set. Trying to verify this now...

from context-mod.

OmgImAlexis avatar OmgImAlexis commented on July 26, 2024

@FoxxMD you should be storing two caches, one for all events and one for actioned. This way the last 500 actioned events are also cached. Personally I'd like to enable a mode to store all actioned ones forever. I have more than enough memory in my server to handle this. (128GB)

from context-mod.

FoxxMD avatar FoxxMD commented on July 26, 2024

I'm closing this as it should be solved by switching to database persistence in v0.11.0. If anyone has this issue still I can re-open.

from context-mod.

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.