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
Example:
Using my_store._collection.insert_many() -> 4.34 seconds
Using my_store.update() -> 279.79 seconds.
update is doing a bulk_write of ReplaceOne requests (perhaps pointing to a missing index on the collection I’m inserting to?), but it does probably point to needing an alternative method when we know that we’re inserting to an empty collection.
The text was updated successfully, but these errors were encountered:
Example:
Using my_store._collection.insert_many() -> 4.34 seconds
Using my_store.update() -> 279.79 seconds.
update
is doing a bulk_write of ReplaceOne requests (perhaps pointing to a missing index on the collection I’m inserting to?), but it does probably point to needing an alternative method when we know that we’re inserting to an empty collection.The text was updated successfully, but these errors were encountered: