摘要:
什么是逃逸分析 wiki上的定义 In compiler optimization, escape analysis is a method for determining the dynamic scope of pointers - where in the program a pointer 阅读全文
posted @ 2020-06-03 17:45
猿小白手记
阅读(262)
评论(0)
推荐(0)
摘要:
IO多路复用:I/O是指网络I/O,多路指多个TCP连接(即socket或者channel),复用指复用一个或几个线程。意思说一个或一组线程处理多个TCP连接。最大优势是减少系统开销小,不必创建过多的进程/线程,也不必维护这些进程/线程。 IO多路复用使用两个系统调用(select/poll/epo 阅读全文
posted @ 2020-06-03 15:34
猿小白手记
阅读(416)
评论(0)
推荐(0)