mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-12 23:40:45 -07:00
Skip find_index when only one scope in find_variable — go straight to environments\n\nResult: {"status":"keep","combined_µs":4323,"parse_µs":3055,"render_µs":1268,"allocations":25535}
This commit is contained in:
@@ -213,9 +213,11 @@ module Liquid
|
|||||||
scope = @scopes[0]
|
scope = @scopes[0]
|
||||||
if scope.key?(key)
|
if scope.key?(key)
|
||||||
variable = lookup_and_evaluate(scope, key, raise_on_not_found: raise_on_not_found)
|
variable = lookup_and_evaluate(scope, key, raise_on_not_found: raise_on_not_found)
|
||||||
|
elsif @scopes.length == 1
|
||||||
|
# Only one scope and key not found — go straight to environments
|
||||||
|
variable = try_variable_find_in_environments(key, raise_on_not_found: raise_on_not_found)
|
||||||
else
|
else
|
||||||
# This was changed from find() to find_index() because this is a very hot
|
# Multiple scopes — search through all of them
|
||||||
# path and find_index() is optimized in MRI to reduce object allocation
|
|
||||||
index = @scopes.find_index { |s| s.key?(key) }
|
index = @scopes.find_index { |s| s.key?(key) }
|
||||||
|
|
||||||
variable = if index
|
variable = if index
|
||||||
|
|||||||
Reference in New Issue
Block a user