摘要: spring 的 async 注解 https://www.baeldung.com/spring-async@Async will make it execute in a separate thread i.e. the caller will not wait for the completi 阅读全文
posted @ 2019-05-26 21:32 harrychinese 阅读(632) 评论(0) 推荐(0) 编辑
摘要: 理解 python 的 async:1. 协程后面的技术也是 IO 多路复用, Nginx 和 nodejs 都充分利用了这种机制. 2. Flask 线程中为什么不能直接使用标准库 asyncio 来支持异步? asyncio 一定要有应该eventloop, 而这个 eventloop 必须运行 阅读全文
posted @ 2019-05-26 17:38 harrychinese 阅读(2612) 评论(0) 推荐(0) 编辑
摘要: web网站包含前端和后端, 异步处理可以用在前端, 也可以用在后端. 前端 jquery 进行 ajax 请求时, 可设置 async 属性为 true, 并为 success 设置一个 callback 函数, 在服务端返回之前, 浏览器可以执行 ajax 之后的代码, 当服务器端返回后, jqu 阅读全文
posted @ 2019-05-26 16:42 harrychinese 阅读(4812) 评论(0) 推荐(1) 编辑