Hi! If I’m using `MemoryCacheFactory` & `SqlNo...
# apollo-kotlin
s
Hi! If I’m using
MemoryCacheFactory
&
SqlNormalizedCacheFactory
chained together, and
doNotStore(true)
is used on an Apollo (3.3.0) query with a
CacheOnly
fetch policy, would this prevent the memory cache being populated if only the SQL cache was read from?
m
doNotStore()
is only used after a network response. It doesn't act on the cache loading chain
So what is read from SQL will end up in the memory cache
s
Great, I hoped as much – thanks!
👍 1
🙂 1