on the go way 服务器并发

Posted wjonedream+追梦or old+MGTDXR

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了on the go way 服务器并发相关的知识,希望对你有一定的参考价值。

服务器并发的方式有很多种

1.通过多进程或者多线程的方式,现在这种模式基本上已经不用

2.epoll和IOCP回调的方式,不符合人们的习惯

3.使用协程(轻量级线程,创建、销毁的代价很小),协程在逻辑上上顺序执行

其中属于erlang和golang在协程并发方面做的比较好

package main

import (
    "fmt"
)

func getResult(data []int, res chan int) {
    var sum int
    sum = 0
    for _, v := range data {
        sum += v
    }
    res <- sum
}

func main() {

    var res = make(chan int)
    var data = []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
    go getResult(data[:5], res)
    go getResult(data[5:], res)
    sum := <-res
    sum += <-res
    fmt.Println("the answer result is ", sum)
    close(res)
}

 

以上是关于on the go way 服务器并发的主要内容,如果未能解决你的问题,请参考以下文章

Python on the Way, Day1 - Python基础1

The way to unwind the stack on Linux EABI

Go实战--实现一个自己的网络请求日志httplogger(The way to go)

Go语言学习之os包中文件相关的操作(The way to go)

We are all on the way

On The Way—Step 2 Python入门之Python内容初始