@@ -13,14 +13,15 @@ compiled/evaluated quicker.
1313The Workflow
1414------------
1515
16- Both ``evaluate `` and ``compile `` need to do some things before each can
17- provide the return values. For ``evaluate ``, this overhead is even bigger.
16+ Both:method: `Symfony\\ Component\\ ExpressionLanguage\\ ExpressionLanguage::evaluate `
17+ and ``compile() `` need to do some things before each can provide the return
18+ values. For ``evaluate() ``, this overhead is even bigger.
1819
19- Both methods need to tokenize and parse the expression. This is done by the
20+ Both methods need to tokenize and parse the expression. This is done by the
2021:method: `Symfony\\ Component\\ ExpressionLanguage\\ ExpressionLanguage::parse `
2122method. It returns a:class: `Symfony\\ Component\\ ExpressionLanguage\\ ParsedExpression `.
22- Now, the ``compile `` method just returns the string conversion of this object.
23- The ``evaluate `` method needs to loop through the "nodes" (pieces of an
23+ Now, the ``compile() `` method just returns the string conversion of this object.
24+ The ``evaluate() `` method needs to loop through the "nodes" (pieces of an
2425expression saved in the ``ParsedExpression ``) and evaluate them on the fly.
2526
2627To save time, the ``ExpressionLanguage `` caches the ``ParsedExpression `` so
@@ -40,14 +41,14 @@ in the object using the constructor::
4041
4142..note ::
4243
43- The `DoctrineBridge `_has aParserCache implementation using the
44+ The `DoctrineBridge `_provides aParser Cache implementation using the
4445 `doctrine cache library `_, which gives you caching for all sorts of cache
45- strategies, like Apc, Filesystem andApc .
46+ strategies, like Apc, Filesystem andMemcached .
4647
4748Using Parsed and Serialized Expressions
4849---------------------------------------
4950
50- Both ``evaluate `` and ``compile `` can handle ``ParsedExpression `` and
51+ Both ``evaluate() `` and ``compile() `` can handle ``ParsedExpression `` and
5152``SerializedParsedExpression ``::
5253
5354 use Symfony\Component\ExpressionLanguage\ParsedExpression;