S3ppoOriginal post
Rank 4: Virtual Machine
Hi!
i wrote a cloud function that queries an api in the web.
now i want to store queried data in my db.
is there a way that i dont have to check first if the key of the document in my collection already exists, and then i have to decide if i need an update or a create?
something like db.create() with an attribute overwrite: true
due to performance this would be very nice.
best regards
Summary
Developers wants to streamline updating or creating documents in a database without checking if the key already exists. They are looking for a method like db.create() with an overwrite attribute to simplify the process for better performance.