Coder Social home page Coder Social logo

Comments (6)

angelnikolov avatar angelnikolov commented on September 26, 2024

Hey @lordcoste, I doubt it that it has something to do with the lazy loading since Cacheable is just a decorator and shouldn't be affected by it and it should start working once it loads lazily. Can you show me how you are invoking getAdvs?

from ts-cacheable.

lordcoste avatar lordcoste commented on September 26, 2024

sure:

this.placeService.getAdvs(place_id).subscribe((advs) => {
    console.log(advs);
});

from ts-cacheable.

angelnikolov avatar angelnikolov commented on September 26, 2024

Hm, can you put a console.log in your method, like:

@Cacheable()
  public getAdvs(place: number) {
    console.log(place);
    return this.http.get<Adv[]>('http://.../api/v1/advs/' + place)
      .pipe(map(advs => advs.filter(adv => adv.landingUrl !== null)));
  }

and confirm that it really gets called multiple times with the same argument?

from ts-cacheable.

lordcoste avatar lordcoste commented on September 26, 2024

I see, I'm switching from one place to another:

/api/v1/advs/1
/api/v1/advs/2
/api/v1/advs/1 < here was expecting to be already in cache

if I increase maxCacheCount it works.

Can you confirm that this is the correct behaviour?

Most of my users will have just one place and setting maxCacheCount: 5 will cover everyone.

from ts-cacheable.

angelnikolov avatar angelnikolov commented on September 26, 2024

Yes, this is the correct behaviour.
If you just set it up with @Cacheable({}), i.e - no config, it will cache everything until the method is called with a new parameter - 2 in your case.
If you set the maxCacheCount to 5, it will keep up to 5 parameter/response pairs in the cache.

from ts-cacheable.

lordcoste avatar lordcoste commented on September 26, 2024

Thank you :)

from ts-cacheable.

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.