> On Mar 22, 2019, at 6:06 PM, Brendan Stromberger > <[email protected] <mailto:[email protected]>> wrote: > > It seems to still be caching, even with your code snippet, or even if > explicitly disabling the cache in each individual racket file. Also, browser > cache is off.
I'm afraid it's hard for me to offer a better answer without a full example that demonstrates the failure. Cache invalidation is one of the two famously difficult problems in programming (the others being naming things, and off-by-one errors). For instance, if your "pollen.rkt" files import bindings from other .rkt modules, those secondary modules will be cached. Would you believe there's another setup value called `cache-watchlist` [1] that lets you specify other files that the cache should notice. [1] https://docs.racket-lang.org/pollen/Setup.html#%28def._%28%28lib._pollen%2Fsetup..rkt%29._setup~3acache-watchlist%29%29 <https://docs.racket-lang.org/pollen/Setup.html#(def._((lib._pollen/setup..rkt)._setup~3acache-watchlist))> -- You received this message because you are subscribed to the Google Groups "Pollen" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
