You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Cosmos key-value provider's exists method calls get_pair, which always fully materialises the value blob on the client. This is potentially slow for large values (and could incur egress costs, although we'd expect this provider to be used only within Azure I imagine). It might be worth implementing an additional method that selects only the id, and reimplementing exists in terms of that.
The text was updated successfully, but these errors were encountered:
The Cosmos key-value provider's
exists
method callsget_pair
, which always fully materialises the value blob on the client. This is potentially slow for large values (and could incur egress costs, although we'd expect this provider to be used only within Azure I imagine). It might be worth implementing an additional method that selects only theid
, and reimplementingexists
in terms of that.The text was updated successfully, but these errors were encountered: