Count the number of times certain words were said in a particular neighborhood. Performed as a basic MapReduce job against 25M tweets. Implemented with different programming languages as a educational exercise.
From best I can tell about the error mentioned in #14, cargo didn't like that we were trying to build a release version of the application prior to building a debug version. I actually don't know, but that appears to have fixed the issue for rust 1.2. It may not be necessary, but I also completely removed ~/.cargo after upgrading to 1.2 just to make sure I was starting with a clean slate.
As an interesting side note, rust 1.2 has a much, much faster regex implementation (from 19.1 seconds in version 1.0 down to 1.7 seconds in version 1.2).
From best I can tell about the error mentioned in #14, cargo didn't like that we were trying to build a release version of the application prior to building a debug version. I actually don't know, but that appears to have fixed the issue for rust 1.2. It may not be necessary, but I also completely removed
~/.cargo
after upgrading to 1.2 just to make sure I was starting with a clean slate.As an interesting side note, rust 1.2 has a much, much faster regex implementation (from 19.1 seconds in version 1.0 down to 1.7 seconds in version 1.2).
2.4s2.3s19.1s1.7s