Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
dced5e11
Commit
dced5e11
authored
May 08, 2013
by
alexpott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#1979290
by Cottser, soulston: Add static caching to Twig_Environment::getTemplateClass().
parent
75c40754
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
core/lib/Drupal/Core/Template/TwigEnvironment.php
core/lib/Drupal/Core/Template/TwigEnvironment.php
+24
-0
No files found.
core/lib/Drupal/Core/Template/TwigEnvironment.php
View file @
dced5e11
...
...
@@ -21,6 +21,13 @@ class TwigEnvironment extends \Twig_Environment {
protected
$cache_object
=
NULL
;
protected
$storage
=
NULL
;
/**
* Static cache of template classes.
*
* @var array
*/
protected
$templateClasses
;
/**
* Constructs a TwigEnvironment object and stores cache and storage
* internally.
...
...
@@ -29,6 +36,8 @@ public function __construct(\Twig_LoaderInterface $loader = NULL, $options = arr
// @todo Pass as arguments from the DIC.
$this
->
cache_object
=
cache
();
$this
->
templateClasses
=
array
();
parent
::
__construct
(
$loader
,
$options
);
}
...
...
@@ -110,4 +119,19 @@ protected function storage() {
return
$this
->
storage
;
}
/**
* {@inheritdoc}
*/
public
function
getTemplateClass
(
$name
,
$index
=
null
)
{
// We override this method to add caching because it gets called multiple
// times when the same template is used more than once. For example, a page
// rendering 50 nodes without any node template overrides will use the same
// node.html.twig for the output of each node and the same compiled class.
$cache_index
=
$name
.
(
NULL
===
$index
?
''
:
'_'
.
$index
);
if
(
!
isset
(
$this
->
templateClasses
[
$cache_index
]))
{
$this
->
templateClasses
[
$cache_index
]
=
parent
::
getTemplateClass
(
$name
,
$index
);
}
return
$this
->
templateClasses
[
$cache_index
];
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment