From 06f945f27840b53e57795dadbc38e76f7e11ab1c Mon Sep 17 00:00:00 2001 From: Horus3 Date: Mon, 24 Feb 2014 16:42:14 +0100 Subject: init --- .../documentation/manual/core/en/migration.18.html | 157 +++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 zend/documentation/manual/core/en/migration.18.html (limited to 'zend/documentation/manual/core/en/migration.18.html') diff --git a/zend/documentation/manual/core/en/migration.18.html b/zend/documentation/manual/core/en/migration.18.html new file mode 100644 index 0000000..970e7d0 --- /dev/null +++ b/zend/documentation/manual/core/en/migration.18.html @@ -0,0 +1,157 @@ + + +
+ +
+
+ Zend Framework 1.8+ When upgrading from a previous release to Zend Framework 1.8 or higher you + should note the following migration notes. + + +Zend_ControllerStandard Route Changes+ As translated segments were introduced into the new standard + route, the '@' character is now a special character + in the beginning of a route segment. To be able to use it in a + static segment, you must escape it by prefixing it with second + '@' character. The same rule now applies for the + ':' character. + +Zend_LocaleDefault caching+ As with Zend Framework 1.8 a default caching was added. The reason behind this + change was, that most users had performance problems but did not add caching at + all. As the I18n core is a bottleneck when no caching is used we decided to add + a default caching when no cache has been set to Zend_Locale. + + ++ Sometimes it is still wanted to prevent caching at all even if this decreases + performance. To do so you can simply disable caching by using the + disableCache() method. + + +Example #1 Disabling default caching
+ +
|
+
+
|
+