久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

<i id='JkQOs'><tr id='JkQOs'><dt id='JkQOs'><q id='JkQOs'><span id='JkQOs'><b id='JkQOs'><form id='JkQOs'><ins id='JkQOs'></ins><ul id='JkQOs'></ul><sub id='JkQOs'></sub></form><legend id='JkQOs'></legend><bdo id='JkQOs'><pre id='JkQOs'><center id='JkQOs'></center></pre></bdo></b><th id='JkQOs'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='JkQOs'><tfoot id='JkQOs'></tfoot><dl id='JkQOs'><fieldset id='JkQOs'></fieldset></dl></div>
<tfoot id='JkQOs'></tfoot>

  • <legend id='JkQOs'><style id='JkQOs'><dir id='JkQOs'><q id='JkQOs'></q></dir></style></legend>

      <bdo id='JkQOs'></bdo><ul id='JkQOs'></ul>
    1. <small id='JkQOs'></small><noframes id='JkQOs'>

        Zend Framework 1 與 Zend Framework 2 性能對比

        Zend Framework 1 vs Zend Framework 2 performance(Zend Framework 1 與 Zend Framework 2 性能對比)

        <i id='5KhdK'><tr id='5KhdK'><dt id='5KhdK'><q id='5KhdK'><span id='5KhdK'><b id='5KhdK'><form id='5KhdK'><ins id='5KhdK'></ins><ul id='5KhdK'></ul><sub id='5KhdK'></sub></form><legend id='5KhdK'></legend><bdo id='5KhdK'><pre id='5KhdK'><center id='5KhdK'></center></pre></bdo></b><th id='5KhdK'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='5KhdK'><tfoot id='5KhdK'></tfoot><dl id='5KhdK'><fieldset id='5KhdK'></fieldset></dl></div>

          <small id='5KhdK'></small><noframes id='5KhdK'>

        • <legend id='5KhdK'><style id='5KhdK'><dir id='5KhdK'><q id='5KhdK'></q></dir></style></legend>
            <tbody id='5KhdK'></tbody>
            <bdo id='5KhdK'></bdo><ul id='5KhdK'></ul>

                  <tfoot id='5KhdK'></tfoot>

                  本文介紹了Zend Framework 1 與 Zend Framework 2 性能對比的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  Zend Framework 2 剛剛發布,Zend 僅在 18 個月內提供對 ZF1 的支持.我知道他們正在為 ZF2 中的新功能工作,然后他們將對其進行一些重大的速度改進,因為它比 ZF1 慢 5 倍.

                  Zend Framework 2 was just released and Zend offers support for ZF1 for only 18 months from now. I know they were working for new features in ZF2 and then they were going to do some major speed improvements to it since it was 5 times slower than ZF1.

                  我想從您所做的基準測試或測試中了解 ZF2 比 ZF1 慢多少,而不是純粹的猜測.

                  I would like to know how slower is ZF2 than ZF1 from benchmarks or tests you did and not pure speculation.

                  我發現的最新基準是 2012 年 2 月 22 日,得出的結論是 ZF2 比 ZF1 慢 4 倍.

                  The latest benchmark I found is from February 22, 2012 and it concludes that ZF2 is 4 times slower than ZF1.

                  鏈接這里

                  推薦答案

                  FAQ - (答案基于昨天的個人實驗)

                  FAQ - (Answers based on personal experiment done yesterday)

                  Zend Framework 2 與 Zend Framework 1 相比有何變化?

                  架構

                  ZF1 基于 MVC,ZF2 基于 MOVE.巨大的差異.MOVE = 模型操作視圖事件,MVC = 模型視圖控制器.更多信息.Zend Framework 2 使用 100% 面向對象的代碼并利用 PHP 5.3 的大部分新功能,即命名空間、后期靜態綁定、lambda 函數和閉包.來源

                  ZF1 is based on MVC , ZF2 is based on MOVE. Huge difference. MOVE = Model Operations Views Events , MVC = Models Views Controllers. More here. Zend Framework 2 uses 100% object-oriented code and utilises most of the new features of PHP 5.3, namely namespaces, late static binding, lambda functions and closures. source

                  安裝尺寸

                  最新的 ZF1 文件大約 30Mb,ZF2 大約 2.5Mb(壓縮).

                  The latest ZF1 file is approx 30Mb and ZF2 is approx 2.5Mb (Zipped).

                  依賴

                  ZF1 是一組核心庫和非常松散耦合的架構(相對于它的競爭對手/玩家 - CakePHP).ZF1 不需要太多的寶石"(如在 ruby?? 中),但是使用插件可以做得更好.ZF2 要求您了解 composer - phar 很快它就可能超越任何其他框架.新概念:Zend 粉絲的依賴注入.

                  ZF1 is core set of libraries and very loosely coupled architecture (with respect to its competitor/player - CakePHP). ZF1 does not require much of 'gems' (as in ruby) but, can do better with plugins. ZF2 requires you to know about composer - phar and soon it may out-match any other framework. New concept : Dependency Injection for Zend fans.

                  認證

                  認證僅適用于 ZF1,不過,盡管在線提供培訓材料,但有傳言稱他們正在談論 ZF2 認證.

                  Certification is available only for ZF1, however, there are rumours about their talks for ZF2 certs though training material is available online.

                  約定

                  ZF1 中的類名是 Zend_Db_Table ,用于 Zend/Db/Table.php 中的類,而在 ZF2 中,它是類 MyAuthAdapter .說的夠多了.

                  classname in ZF1 was Zend_Db_Table for class in Zend/Db/Table.php whereas in ZF2, it is class MyAuthAdapter . Enough said.

                  社區

                  ZF1 得到 Zend Technologies(以及其他一些未命名的)的支持.ZF2 擁有卓越的支持者,包括谷歌和微軟.來源在這里

                  ZF1 was backed by Zend Technologies (and few other, unnamed). ZF2 has remarkable supporters including Google and Microsoft. Source here

                  速度

                  執行Hello World!"的時間增加了大約 20 倍.在 ZF2 中.我不是在這里評判.我在這里可能是錯的.自己動手做.

                  It took approx 20 times more time to execute "Hello World!" in ZF2. I am not judging here. I could be wrong here. DIY.

                  我應該選擇哪一個?

                  MVC 已經問世將近十年了,如果您是其中一個對新架構感到悲傷的人,那么嘿!IT 是您選擇的"領域,緊跟潮流并更新自己!從此處啟動 ZF2.

                  MVC is been around since almost a decade and if you are one of them who are feeling sad for a new architecture altogether then hey! IT is 'your chosen' domain, keep up with the trends and update yourself! Start ZF2 from here.

                  這篇關于Zend Framework 1 與 Zend Framework 2 性能對比的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Deadlock exception code for PHP, MySQL PDOException?(PHP、MySQL PDOException 的死鎖異常代碼?)
                  PHP PDO MySQL scrollable cursor doesn#39;t work(PHP PDO MySQL 可滾動游標不起作用)
                  PHP PDO ODBC connection(PHP PDO ODBC 連接)
                  Using PDO::FETCH_CLASS with Magic Methods(使用 PDO::FETCH_CLASS 和魔術方法)
                  php pdo get only one value from mysql; value that equals to variable(php pdo 只從 mysql 獲取一個值;等于變量的值)
                  MSSQL PDO could not find driver(MSSQL PDO 找不到驅動程序)

                      <bdo id='AzD0o'></bdo><ul id='AzD0o'></ul>

                      • <tfoot id='AzD0o'></tfoot>
                        1. <legend id='AzD0o'><style id='AzD0o'><dir id='AzD0o'><q id='AzD0o'></q></dir></style></legend>

                              <tbody id='AzD0o'></tbody>
                          1. <small id='AzD0o'></small><noframes id='AzD0o'>

                            <i id='AzD0o'><tr id='AzD0o'><dt id='AzD0o'><q id='AzD0o'><span id='AzD0o'><b id='AzD0o'><form id='AzD0o'><ins id='AzD0o'></ins><ul id='AzD0o'></ul><sub id='AzD0o'></sub></form><legend id='AzD0o'></legend><bdo id='AzD0o'><pre id='AzD0o'><center id='AzD0o'></center></pre></bdo></b><th id='AzD0o'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='AzD0o'><tfoot id='AzD0o'></tfoot><dl id='AzD0o'><fieldset id='AzD0o'></fieldset></dl></div>
                            主站蜘蛛池模板: 久草在线 | 欧美精品a∨在线观看不卡 国产精品久久国产精品 | 亚洲v日韩v综合v精品v | 国产激情免费视频 | 亚洲欧洲小视频 | 成年人视频免费在线观看 | 国产特级毛片aaaaaa | 久久国产精品免费一区二区三区 | 男人天堂999 | 久久久免费精品 | 午夜免费精品视频 | 青娱乐一区二区 | 亚洲精品亚洲人成人网 | www.中文字幕.com | 免费天天干 | aaaaa毛片| 毛片一级片 | 91在线视频| 欧美一区2区三区4区公司 | 亚洲啊v | 亚洲国产免费 | 亚洲成人网在线 | 精品国产乱码久久久久久闺蜜 | 精品久久久久久久久久久久久久 | 日韩免费一区二区 | 欧美 日韩 中文 | 国产精品久久国产精品 | 黄色在线免费观看视频网站 | 日韩视频精品在线 | 围产精品久久久久久久 | 狠狠av | 91精品国产综合久久久久久丝袜 | 狠狠色综合网站久久久久久久 | 久久激情视频 | 亚洲欧洲精品一区 | 久久久久91 | 日韩在线91 | 国产成人在线一区二区 | 国产日韩精品在线 | 婷婷狠狠 | 巨大荫蒂视频欧美另类大 |