Heufneutje / WinWeelay

A WeeChat relay for Windows.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Parse options in parallel

Heufneutje opened this issue · comments

Right now they're looped through one by one which is slow when for example you don't set a filter. Look into speeding it up with some Parallel.ForEach.

It appears that it's not the parsing of the options but filling the list with 1200+ items that's the problem. Sadly no amount of parallel code will solve that.

Implemented a different approach in 76f2b1b which should help with performance.