有哪些技术可用于测试 ActiveRecord 批量模型对象创建的优化?

发布于 2024-12-07 18:17:50 字数 283 浏览 0 评论 0原文

我正在优化联系人导入器工具,该工具可以处理大量电子邮件地址并创建联系人对象。

首当其冲的变化将涉及一次性创建所有联系人,而不是使用标准 ActiveRecord.create 单独创建。我了解如何测试此功能是否正常工作,但我不确定测试从优化工作中获得的性能改进的最佳实践。

哪些技术被认为是在 TDD 工作流程中测试优化改进和代码性能的良好实践?

对于这个特定情况,我在 Rails 3 堆栈中优化存储在 mysql 数据库中的批量模型对象创建。我正在使用 rspec 和 TDD 工作流程测试我的代码。

I am in the process of optimizing a contact importer tool that process a large list of email address and creates contact objects.

The brunt of the changes will involve creating the contacts all at once rather than individually using standard ActiveRecord.create. I understand how to test that this functionality works correctly but I am not sure of best practices for testing the performance improvement gained from the optimization work.

What techniques are considered good practice for testing optimization improvements and code performance in a TDD work flow?

For this specific case, I am in a Rails 3 stack optimizing bulk model object creation being stored in a mysql db. I am testing my code using rspec with a TDD work flow.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱桃奶球 2024-12-14 18:17:50

虽然我对这种方法并不是 100% 满意,但我最终在这里做的是使用标准 Rails 基准测试功能。有关如何执行此操作的教程,请访问 http://guides.rubyonrails.org/performance_testing.html< /a>.

在这里,您可以使用 rake test:benchmark 编写测试,根据时间、内存使用情况和许多其他内容进行分析

While I am not 100% happy with this approach, what I ended up doing here was using the standard Rails benchmarking test abilities. A tutorial for how to do this can be found at http://guides.rubyonrails.org/performance_testing.html.

Here you can write tests that will profile based on time, memory usage and a number of other things using rake test:benchmark

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文