[go-nuts] Goroutine ported to Haskell, do you Gophers think the marriage with STM done right there ?

2020-01-20 Thread Compl Yue
https://github.com/e-wrks/edh#program-concurrency-and-data-consistency-as-a-whole I'm the author of Edh FYI, just released it to public. Best regards, Compl -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and sto

[go-nuts] Re: How much performance will be impacted for GC to be conservative by scanning externally allocated memory (mmap mostly desirable) for pointers ?

2018-09-20 Thread Compl Yue
emory into the Go heap. > Pointers within the mmap'd area are fine. > > > that also means no regular Go pointer should be defined into such structs > > Right. > > On Wednesday, September 19, 2018 at 7:39:33 PM UTC-7, Compl Yue wrote: >> >> Hi Gophers, >> >

[go-nuts] How much performance will be impacted for GC to be conservative by scanning externally allocated memory (mmap mostly desirable) for pointers ?

2018-09-19 Thread Compl Yue
Hi Gophers, I'm new to Go and excited by it's elegancy and potentials :D I'm investigating into the Go way to serve massive structured data which's backed by few huge files mmap-ed. As I researched so far, boltdb has done similar things pretty successful, but it received criticism about its tr