You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In one case length xs == 70000 and the process took significant processing power. Changing the code to instead use mapM_ produceMessages (chunksOf 1024 xs) is a huge improvement. Perhaps the exactly implications of produceMessages (xs ++ ys) vs produceMessages xs >> produceMessages ys should be documented?