提交 26dd9b26 编写于 作者: X Xavier Noria

significant speedup of AC::Parameters#permit

The current implementation of AC::Parameters#permit builds permitted hashes and
then calls permit! on them.

This filtering is recursive, so we call permit! on terminal branches, but then
ascendants call permit! on themselves when the recursion goes up the stack,
which recurses all the way down again because permit! is recursive itself.
Repeat this for every parent node and you get some scary O-something going on
that I don't even want to compute.

Instead, since the whole point of the permit recursion is to build permitted
hashes along the way and at that point you know you've just come up with a
valid filtered version, you can already switch the toggle on the spot.

I have seen 2x speedups in casual benchmarks with small structures. As the
previous description shows, the difference in performance is going to be a
function of the nesting.

Note that that the involved methods are private and used only by permit.
上级 5647d854
......@@ -398,7 +398,8 @@ def permit(*filters)
unpermitted_parameters!(params) if self.class.action_on_unpermitted_parameters
params.permit!
params.permitted = true
params
end
# Returns a parameter for the given +key+. If not found,
......@@ -816,6 +817,7 @@ def permit_any_in_parameters(params)
# Filter this one out.
end
end
sanitized.permitted = true
end
end
......
......@@ -187,6 +187,11 @@ def walk_permitted(params)
permitted = params.permit(:username, preferences: {}, hacked: {})
assert permitted.permitted?
assert permitted[:preferences].permitted?
assert permitted[:preferences][:font].permitted?
assert permitted[:preferences][:dubious].all?(&:permitted?)
assert_equal "fxn", permitted[:username]
assert_equal "Marazul", permitted[:preferences][:scheme]
assert_equal "Source Code Pro", permitted[:preferences][:font][:name]
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册