Oh, my GoD! Goroutines on D

mw mingwu at gmail.com
Sun Jun 14 19:49:46 UTC 2020


On Sunday, 14 June 2020 at 17:10:14 UTC, mw wrote:
> Have you tried lock-free queue?
>
> https://www.liblfds.org/mediawiki/index.php?title=r7.1.1:Queue_(unbounded,_many_producer,_many_consumer)
>
> Java uses the same algorithm for ConcurrentLinkedQueue (in C 
> implementation).
>
> I tried some small examples with liblfds, got slightly better 
> performance than Java. Maybe we don’t want to reinvent the 
> wheels, esp the well tested ones.

You can try it here:

https://github.com/mingwugmail/liblfdsd

only 
https://www.liblfds.org/mediawiki/index.php?title=r7.1.1:Queue_(bounded,_many_producer,_many_consumer) for now.

```
received 100000000 messages in 4632 msec sum=4999999950000000 
speed=21588 msg/msec
```


More information about the Digitalmars-d mailing list