Details
Description
When the template caching is on, concurrent thread may used at the same time
the same compiled template.
As Directives are not designed to be stateless it may produce funny effect.
Example: #foreach
T1: #foreach ... | ... | ... | ... |
c=0 c=1 c=0 c=1 c=2 c=3 c=4
T2: #foreach... | ... |
--------|-----------|---|---|---|---|---|------>