我正在使用烧瓶为应用程序构建后端 api,我需要做的一件事是:
1. get the content the user submited
2. send a twitter with that content
3. save the content to my DB and return the id of the new item
现在的问题是第 2 步花费的时间太长,因此会减慢总请求时间。
更具体地说,第 2 步是: twitter.send(content)
我怎样才能使第 2 步异步?PS:我不需要知道第2步是否成功