lib/eco/api/microcases/people_cache.rb in eco-helpers-1.5.14 vs lib/eco/api/microcases/people_cache.rb in eco-helpers-1.5.15

- old
+ new

@@ -4,10 +4,17 @@ # Helper to locally cache the people manager. # @param filename [String] the name of the file where the data should be cached. # @return [Eco::API::Organization::People] the `People` object with the data. def people_cache(filename = enviro.config.people.cache) logger.info("Going to get all the people via API") + + start = Time.now people = session.batch.get_people + secs = Time.now - start + cnt = people.count + per_sec = (cnt.to_f / secs).floor + logger.info("Loaded #{cnt} people in #{secs} seconds (#{per_sec} people/sec)") + file = file_manager.save_json(people, filename, :timestamp) logger.info("#{people.length} people loaded and saved locally to #{file}.") Eco::API::Organization::People.new(people) end