After updating a facet value for a document, how l...
# community-help
d
After updating a facet value for a document, how long does it take before the facets are updated when querying? For context - we’re updating a tag facet on a document as part of an API call, and would then like to fetch the new facets, but they appear to be still out of date.
1
is there any way to make the request only complete when the facets collections are updated?
k
The write is complete as soon as the write API call succeeds. Any reads after that should immediately start seeing the updated value. In clustered mode it might take a couple additional seconds for all nodes to get it.
🙌 1
d
thank you, i’ll debug further, that’s helpful!