Skip to content

Instantly share code, notes, and snippets.

@orend
Created March 11, 2013 13:40
Show Gist options
  • Save orend/5134300 to your computer and use it in GitHub Desktop.
Save orend/5134300 to your computer and use it in GitHub Desktop.
Streaming with csv, from ruby tapas
require 'csv'
def memstats
size = `ps -o size= #{$$}`.strip.to_i
end
memstats #4900
CSV.open('visitors.csv', headers: true) do |csv|
visitors = csv.each # Enumerator
memstats # 5164
visitors.count{|v| v['Geolocation'] =~ /San Francisco/}
end
memstats #5164
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment