Google App Engine: does task queue add faster than datastore writes?

I am trying to optimize some of the user parts of my application by adding background tasks to the task queue rather than performing operations immediately. For CPU intensive tasks, this is an obvious choice, but why just save the data?

On average, is it faster to perform the taskqueue.add () operation or the db.put () operation, or is it about the same?

+3
source share
1 answer

, . 10kb, , . , API Guido NDB, , .

+2

All Articles