At present I am using cloud function and loop the create document function.
But I need to know whether 120 requests per minute limit is there for cloud functions too???
Also awaiting for each call and then sending another create document request takes some time.Is there any other option to do
REQUEST:- Create a direct function like create documents,update documents and delete documents so that it doesn't require the use of creating cloud function.
P.S. I am using python for cloud functions.
Thank you.
TL;DR
Developers are looking for the best way to create/update/delete multiple documents efficiently. They are currently using cloud functions but are concerned about the 120 requests per minute limit. They also find the process time-consuming and are seeking alternatives such as direct functions for operations without relying on cloud functions. They are using Python for cloud functions.