我有以下示例代码。这是作为 Yandex.Functions 运行的(几乎等于 AWS 函数)。
def handler(event, context):
# some long processing is here
text = result_of_long_processing()
return {
'response': {
'text': text
},
}
我应该按以下方式修改代码:
- 如果
long processing
耗时少于 3 秒,则应返回此处理的结果 - 如果超过 3 秒,
wait more
则应返回一些标准文本(如 )并继续处理。
我怎样才能实现它?