1. The lightweight MVC architecture not only facilitates code organization, but also avoids multiple layers of class inheritance, making secondary development and maintenance easy.
2. Almost all class libraries are developed from scratch, including architectural design, DB classes, compiled templates, AJAX, calendars, HTML editors, menus, etc., to avoid the bloated problems caused by using frameworks.
3. Comply with XHTML strict specification and compatible with almost all mainstream browsers, including IE6, IE7, IE8, FF2, FF3, Chrome, Maxthon, Safe360, TT, and Sogou browsers
4. Strictly abide by code specifications, do not allow an extra space, never allow code to be copied more than twice, and do not allow Notices to exist
5. PHP code is fully compatible with Web Servers such as Apache IIS nginx
6. MySQL index optimization has reached a new level. During the development process, slow queries are not allowed on the main pages.
7. Utilize efficient C language to implement PHP extension of XHTML whitelist filtering function
8. Preliminarily implemented Memcached data synchronization service for multiple machines under Linux, and the stress resistance of the program has been geometrically improved.
9. Make full use of the advantages of Memcached. When Memcached is turned on, the MySQL server is basically idle.
10. Support MySQL's partitioning feature at the architecture level, so that MySQL's partitioning advantages can be fully utilized, and it is still fast even with tens of millions of data volumes.
11. The compiled template adds support for special effects. The code of the display layer that conforms to the format will be automatically translated into special effects code, which is transparent to the View layer.
Expand