grape-entity icon indicating copy to clipboard operation
grape-entity copied to clipboard

benchmark

Open dccmmtop opened this issue 6 years ago • 0 comments

How to get each expose takes time?

example:

expose :friend_names do |user, options|
  t1 = Time.now
  names = friends.map(&:name),join('',)
  t2 = Time.now
  puts "cost_time: #{t2 - t1}"
  names
end

dccmmtop avatar Sep 26 '19 09:09 dccmmtop