aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-03-02 00:10:06 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-03-13 20:08:54 -0300
commita8dd21d8b459ce4d57160a359798c577085a95e9 (patch)
tree3c6a7537d06cbc35200edc13ac9d7cf03238025e /railties/guides
parentc1f397f82c7b3f352500832a399b5dbdc500b9c8 (diff)
downloadrails-a8dd21d8b459ce4d57160a359798c577085a95e9.tar.gz
rails-a8dd21d8b459ce4d57160a359798c577085a95e9.tar.bz2
rails-a8dd21d8b459ce4d57160a359798c577085a95e9.zip
Remove IdentityMap
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/configuring.textile2
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile
index 49b15bd650..79980be5ef 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -288,8 +288,6 @@ h4. Configuring Active Record
* +config.active_record.whitelist_attributes+ will create an empty whitelist of attributes available for mass-assignment security for all models in your app.
-* +config.active_record.identity_map+ controls whether the identity map is enabled, and is false by default.
-
* +config.active_record.auto_explain_threshold_in_seconds+ configures the threshold for automatic EXPLAINs (+nil+ disables this feature). Queries exceeding the threshold get their query plan logged. Default is 0.5 in development mode.
* +config.active_record.dependent_restrict_raises+ will control the behavior when an object with a <tt>:dependent => :restrict</tt> association is deleted. Setting this to false will prevent +DeleteRestrictionError+ from being raised and instead will add an error on the model object. Defaults to false in the development mode.