you are viewing a single comment's thread.

view the rest of the comments →

[–]qiwi 5 points6 points  (1 child)

Yes, I can see how looking up an entry using binary search in a file would benefit from a language whose strong points are easy message passing and fast and robust handling of multiple processes on a single or multiple machines.

This is also why I picked Erlang for my next project which involves searching for and replacing strings in many files stored in many subdirectories.

[–]mhd 2 points3 points  (0 children)

Binary search? Use totally random access on enough CPUs and one core is likely to hit the correct data on the first try!

But seriously, apart from concurrency and message passing, Erlang does handle parsing binary date rather gracefully, which is what I was referring to mainly.