Skip to content

Instantly share code, notes, and snippets.

@ciscou
Created September 4, 2014 12:38
Show Gist options
  • Save ciscou/71d47063a4a0297825a8 to your computer and use it in GitHub Desktop.
Save ciscou/71d47063a4a0297825a8 to your computer and use it in GitHub Desktop.
mr_distinct_year_month.rb
map = %Q{
function() {
emit("" + this.year + this.month, 1)
}
}
reduce = %Q{
function(key, values) {
return 1;
}
}
VehicleLookup.where(make: "HYUNDAI", model: "I30").map_reduce(map, reduce).out(inline: 1).to_a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment