gpt4 book ai didi

ruby-on-rails - ActiveRecord SQL执行时间

转载 作者:行者123 更新时间:2023-12-04 02:52:56 24 4
gpt4 key购买 nike

如何获取Rails中的SQL查询执行时间?
我可以在日志中看到时间,例如:

 Posting Load (10.8ms)  SELECT "postings".* FROM "postings" ORDER BY "postings"."id" ASC LIMIT 1


但是,如何以编程方式获取该值(10.08),以便在我的代码中进一步使用它?

最佳答案

您可以使用ActiveSupport::Notifications检索SQL语句的运行时

您应该能够使用sql.active_record来查看SQL调用需要多长时间

ActiveSupport::Notifications.subscribe('sql.active_record') do |*args|
event = ActiveSupport::Notifications::Event.new(*args)
event.duration #how long it took to run the sql command
end


此代码未经测试,所以我不能保证它能正常工作,但应该

关于ruby-on-rails - ActiveRecord SQL执行时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18240624/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com