rails/actionview/test/activerecord
Jean Boussier 06d3b358df Replace allocations count by GC time in request logs
Allocations count is often an interesting proxy for performance,
but not necessarily the most relevant thing to include in request
logs, given they aren't a per thread metric, so the reporting
is widely innacurate in multi-threaded environments.

Since Ruby 3.1 there is now `GC.total_time` which is a monotonically
increasing counter of time spent in GC. It still isn't really a per
thread metric, but is is more interesting because it uses the same
unit as the response time, allowing to better see when you have a GC
pause performance issue.
2024-05-08 23:02:35 +02:00
..
controller_runtime_test.rb Replace allocations count by GC time in request logs 2024-05-08 23:02:35 +02:00
debug_helper_test.rb Change the empty block style to have space inside of the block 2018-09-25 13:19:35 -04:00
form_helper_activerecord_test.rb Refactor Action View tests to stop re-assigning @output_buffer 2022-08-03 15:00:58 +02:00
multifetch_cache_test.rb Fix Action View collection caching to store fragments as bare strings 2023-07-04 16:37:22 +02:00
partial_rendering_query_test.rb Fix SELECT COUNT queries when rendering ActiveRecord collections (#40870) 2020-12-18 15:58:11 -05:00
polymorphic_routes_test.rb Update test suite for compatibility with Ruby 3.4-dev 2024-02-16 11:55:44 +01:00
relation_cache_test.rb Expose assert_queries_match and assert_no_queries_match assertions 2023-12-21 01:30:16 +02:00
render_partial_with_record_identification_test.rb Fix flaky Action View tests 2022-02-23 09:39:57 -05:00