Does peer component making the same call result in redundant calls/usage?
Lets say i have i have component A and B
both are making the same query via convex. does this result in 2 function calls interm of the usage ?
1 Reply
If it's exactly the same query and A and B are both rendered, the query is deduped on the client. So the server only sees the one query, and it counts as 1 for usage.