|
|
|
|
|
by uvdn7
1475 days ago
|
|
These are good questions. I might not have satisfying answers to all of them but I will try. > what about many-to-many where one fetch returns inconsistent results
Are you referring to the case when cache stores a complicated result of a function that fetches data from many sources, and how to figure out when to invalidate? If so, I am sorry but that's not the cache invalidation I was referring to. (https://news.ycombinator.com/item?id=31676102) > What about data queried while there's a transaction rollback.. when is it updated in the cache This might be easier to answer. I assume if you run the database with isolation level higher than read-committed, you will be fine. |
|
Could this delay cause a wrong reporting? Since the source of truth (the DB) could already received multiple mutate events of the data Polaris trying to verify? How do you handle this case?