Development

Changeset 8995 for doc

You must first sign up to be able to contribute.

Changeset 8995 for doc

Show
Ignore:
Timestamp:
05/16/08 06:45:56 (5 months ago)
Author:
fabien
Message:

doc: removed note about syck

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • doc/branches/1.1/book/18-Performance.txt

    r8291 r8995  
    2323>**NOTE** 
    2424>You might be wondering about the overhead caused by the `mod_rewrite` extension: it is negligible. Of course, loading an image with rewriting rules is slower than loading an image without, but the slowdown is orders of magnitude below the execution of any PHP statement. 
    25  
    26 Some symfony developers like to use `syck`, which is a YAML parser packaged as a PHP extension, as an alternative to the symfony internal parser. It is faster, but symfony's caching system already minimizes the overhead of YAML parsing, so the benefit is nonexistent in a production environment. You should also be aware that `syck` isn't completely mature yet, and that it may cause errors when you use it. However, if you are interested, install the extension ([http://whytheluckystiff.net/syck/](http://whytheluckystiff.net/syck/)), and symfony will use it automatically. 
    2725 
    2826>**TIP**