.query vs .onUpdate - any performance differences?
I’m writing a discord bot and it stores the results of the convex query into an LRU cache, and then updates the entries in that cache when the data changes from the onUpdate
This works pretty well, but I don’t hugely need reactivity for a lot of the data fetching I’m doing - a one off fetch would work fine
Is there overhead to doing my data fetching all through .onUpdate that I should be mindful of, or is it functionality equivalent to just calling .query?
