aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-01-19 23:21:28 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-01-19 23:21:28 +0530
commit1944cbbbe5a49bc6a0644d30c0464d1850cdca64 (patch)
tree98919bf49f12d76e7ee947d774a0e7c13c18a172 /railties
parent01d041af9db5123c09ecb2c7dd7263c867d04c89 (diff)
downloadrails-1944cbbbe5a49bc6a0644d30c0464d1850cdca64.tar.gz
rails-1944cbbbe5a49bc6a0644d30c0464d1850cdca64.tar.bz2
rails-1944cbbbe5a49bc6a0644d30c0464d1850cdca64.zip
document AR::Base#with_lock in release notes [ci skip]
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/3_2_release_notes.textile27
1 files changed, 27 insertions, 0 deletions
diff --git a/railties/guides/source/3_2_release_notes.textile b/railties/guides/source/3_2_release_notes.textile
index 379b7472c6..7b37681406 100644
--- a/railties/guides/source/3_2_release_notes.textile
+++ b/railties/guides/source/3_2_release_notes.textile
@@ -373,6 +373,33 @@ has_many :clients, :class_name => :Client # Note that the symbol need to be capi
User.where(:first_name => "Scarlett").first_or_create!(:last_name => "Johansson")
</ruby>
+* Added a <tt>with_lock</tt> method to Active Record objects, which starts a transaction, locks the object (pessimistically) and yields to the block. The method takes one (optional) parameter and passes it to +lock!+.
+
+This makes it possible to write the following:
+
+<ruby>
+class Order < ActiveRecord::Base
+ def cancel!
+ transaction do
+ lock!
+ # ... cancelling logic
+ end
+ end
+end
+</ruby>
+
+as:
+
+<ruby>
+class Order < ActiveRecord::Base
+ def cancel!
+ with_lock do
+ # ... cancelling logic
+ end
+ end
+end
+</ruby>
+
h4. Deprecations
* Automatic closure of connections in threads is deprecated. For example the following code is deprecated: