Fork me on GitHub
#pathom
<
2019-05-10
>
wilkerlucio02:05:02

@souenzzo what "in anger" means?

souenzzo13:05:44

in production, with a team.

wilkerlucio20:05:04

I'm 🙂

😅 4
souenzzo21:05:09

I'm too 🙂 But I'm curious about how many of us

souenzzo14:05:08

A resolver should ALWAYS return everything that it's know? Can I consider it a bug? https://gist.github.com/souenzzo/c120fdc37311341bffd97036ec339766

wilkerlucio14:05:29

@souenzzo no, it doesn't have to, the issue you see is because of caching

wilkerlucio14:05:46

the first call will cache the result, and since from the first to the second the input didn't changed it will hit the cache

wilkerlucio14:05:15

you can set ::pc/cache? false (in the resolver config) to disable it, but then you need to manual cache yourself if you want avoid multiple calls to the same resolver

👍 4
souenzzo19:05:08

It's good to be able to choose. I will add a comment here.