actor-framework / actor-framework/benchmarks

Add Go benchmark

Aberta
#2 1 comentário 0 reações 0 responsáveis Ver no GitHub
idea
Linguagem predominante
C++
Estrelas
26
Forks
15
Métricas de merge de PRs
Nenhum PR com merge em 30d

Descrição

[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
}
```

Guia de contribuição

Nenhum guia de contribuição indexado para este repositório

Avaliação

Esta issue ainda não foi avaliada.

Receba novas issues na sua caixa de entrada

Um resumo curto de issues do GitHub para quem está começando.