File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 31
31
32
32
* Add ` ActiveRecord.after_all_transactions_commit` callback.
33
33
34
- Useful for code that may run either inside or outside a transaction and need
35
- to perform works after the state changes have been properly peristed .
34
+ Useful for code that may run either inside or outside a transaction and needs
35
+ to perform work after the state changes have been properly persisted .
36
36
37
37
` ` ` ruby
38
38
def publish_article(article)
50
50
51
51
*Jean Boussier*
52
52
53
- * Add the ability to ignore counter cache columns until they are backfilled
53
+ * Add the ability to ignore counter cache columns until they are backfilled.
54
54
55
55
Starting to use counter caches on existing large tables can be troublesome, because the column
56
56
values must be backfilled separately of the column addition (to not lock the table for too long)
74
74
75
75
*fatkodima*
76
76
77
- * Retry known idempotent SELECT queries on connection-related exceptions
77
+ * Retry known idempotent SELECT queries on connection-related exceptions.
78
78
79
79
SELECT queries we construct by walking the Arel tree and / or with known model attributes
80
80
are idempotent and can safely be retried in the case of a connection error. Previously,
You can’t perform that action at this time.
0 commit comments