The issue is I keep hitting the OVER_QUERY_LIMIT error when trying to geocode gem locations on a Google Map . I understand that there is a limit to the rate at which you can call the geocoder (as well as the daily limit on total volume), so I need to introduce a pause in between each result in the array.
How do I pause/delay in Rails Controller method to slow it down?
geo_localization = "#{latitude},#{longitude}" query = Geocoder.search(geo_localization).first place = query.address