240 发简信
IP属地:甘肃
  • Go 与异步 IO - io_uring 的思考

    本来准备写一篇详细关于 io_uring 的中文文章,不过在使用上官方的一些文章写的已经非常详细,简单的拿来翻译[http://icebergu...

  • 【译】高性能异步 IO —— io_uring (Effecient IO with io_uring)

    写完 Go 与异步 IO - io_uring 的思考[http://icebergu.com/archives/go-iouring#subm...

  • Go 深入源码 —— channel

    Don't communicate by sharing memory, share memory by communicating. 不要通过...

  • Go 深入源码 —— select 与 channel

    Golang 通过 select...case 语句实现了对 channel 的多路复用以及非阻塞收发操作 本文将着重讲解以下问题: 编译器对 ...