actor-framework / actor-framework/benchmarks

Add Go benchmark

オープン
#2 コメント 1 件 リアクション 0 件 担当者 0 名 GitHub で見る
idea
主要言語
C++
スター
26
フォーク
15
PR マージ指標
30日以内にマージされた PR はありません

説明

[Go](http://golang.org/) qualifies as another benchmark candidate: Goroutines are the equivalent of actors. They become non-blocking when used with buffered channels (though only until the buffer is full). Pattern matching occurs with the switch statement on a value read from a channel:

```
val := <- someChannel
switch val.(type) {
case int: // some code
case float32: // some code
}
```

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。