itogami icon indicating copy to clipboard operation
itogami copied to clipboard

Fastest and most efficient goroutine pool (experimental)

Results 2 itogami issues
Sort by recently updated
recently updated
newest added

````golang func (b *Bubble) Init() tea.Cmd { go func() { pool := itogami.NewPoolWithFunc(uint64(b.Data.Thread), func(i uint32) { b.mainScrapInit(b.Data.Weblist[i]) defer b.wg.Done() }) for i := uint32(0); i < uint32(len(b.Data.Weblist)); i++ { b.wg.Add(1)...

hello, I found a number of errors, which were seems concentrated in the gc of go runtime. The following is a summary of the error messages: ```go 1 => runtime:...