What I would try: 1. ProfileView to pinpoint the bottleneck further 2. FastAnonymous to fix the lambda 3. http://julia-demo.readthedocs.org/en/latest/manual/performance-tips.html In particular, you may check `code_typed`. I don't have experience with `split` and `eachline`. It's possible that they are not type stable (the compiler can't predict their output's type). I would try `for w::ASCIIString in ...` 4. Dict{ASCIIString, Int}() 5. Your loop will hash each string twice. I don't know how to fix that, anyone?
Good luck, Cédric On Saturday, November 28, 2015 at 8:08:49 PM UTC-5, Lampkld wrote: > > Maybe it's the lambda? These are slow in julia right now.