how to understand appengine ndb.tasklet?
问题 From documentation: An NDB tasklet is a piece of code that might run concurrently with other code. If you write a tasklet, your application can use it much like it uses an async NDB function: it calls the tasklet, which returns a Future; later, calling the Future's get_result() method gets the result. The explanation and examples in the document really likes a magic for me. I can use it, but feel hard to understand it properly. For example: May I put any kind of code inside a function and