This method is deprecated or moved on the latest stable version.
The last existing version (v6.1.7.7) is shown here.
size()
public
Get the cachesize. Do not call this
method. This method is not guaranteed to be here ever.
# File actionview/lib/action_view/template/resolver.rb, line 115
def size # :nodoc:
size = 0
@data.each_value do |v1|
v1.each_value do |v2|
v2.each_value do |v3|
v3.each_value do |v4|
size += v4.size
end
end
end
end
size + @query_cache.size
end