Tag Archives: PHP
NodeifyWP and Twenty Sixteen React Debut at WordCamp Denpasar
Today, I am speaking at the inaugural WordCamp Denpasar. I will be giving a talk on NodeifyWP and Twenty Sixteen React, giving the debut demo of the framework.
NodeifyWP is a framework, created by 10up, for creating isomorphic JavaScript applications within PHP and WordPress. Twenty Sixteen React is an example theme using the framework along with React.js and Redux.
Here are the slides for my talk:
Data Compression, PHP, and the Web
Data compression is an extremely important topic in modern computing, networking, and software engineering. Sharing information faster and in smaller sizes across a network is a boundary that will continue to be pushed as long as computers and the internet exist. Large companies like Google and very smart people have continuously refined and created new algorithms to make things smaller. Better compression algorithms not only make companies profit but have implications on low bandwidth users, critical health data, financial data, etc. The topic is so important, HBO even created a show about it!
Let’s discuss some compression basics as it relates to the web, networking, and PHP.
By far the most used compression technique is deflate which powers zip, gzip, and zlib. Gzip compressed data can be decompressed by modern browsers on the fly. Gzip compression is lossless, meaning the original data can be fully recovered during decompression. Due to it’s power and widespread browser support, it’s almost a standard that we must gzip a websites contents before returning that information to the browser. Here’s how that typically looks:
Browser requests web page -> Nginx receives request -> PHP output is generated/static file is returned -> Nginx gzip's the output and responds to the browser -> browser decompresses the data for the end user
Here’s a useful article on enabling compression in nginx.
Recently, Google and Facebook have released their own compression algorithms. Google’s algorithm, Brotli, is another lossless compression solution. In a paper comparing compression algorithms, Brotli’s compressed data (at maximum level) is about 30% smaller or denser than gzip.
However, when looking at compression algorithms, we can’t just look at density (also referred to as compression ratio). We also have to consider compression and decompression speed. If our algorithm produces denser data but takes a month to compress, what have we really accomplished? In the paper referenced above, Brotli, performs about the same as gzip in compression and decompression time.
Zstandard is a lossless compression algorithm announced by Facebook in August 2016. Facebook is touting Zstandard to be a solid balance between compression ratio, compression speed, and decompression speed and a big step forward in modern computing.
Let’s look at some benchmarks: (table columns in order are: Plugin, Codec, Level, Compression Ratio, Compression Speed, and Decompression Speed)
This benchmark was produced by Squash Compression Benchmark on a 122 KB text file.
The results show Brotli has the best file density (compression ratio) while Zstandard has the worst. Zstandard has the fasted compression speed by far while Brotli has the slowest. I ran some of my own tests locally just on compression ratio:
Original | Gzip (level 9) | Brotli (level 11) | Zstandard (level 22) | |
Webpage 1 | 44.05 KB | 14.45 KB | 12.67 KB | 14.05 KB |
Webpage 2 | 176.26 KB | 175.98 KB | 176.27 KB | 176.28 KB |
Webpage 3 | 208.38 KB | 57.09 KB | 47.76 KB | 52.14 KB |
Webpage 4 | 237.4 KB | 39.07 KB | 29.81 KB | 33.28 KB |
Webpage 5 | 191.72 KB | 35.97 KB | 28.64 KB | 32.38 KB |
Webpage 6 | 113.45 KB | 16.22 KB | 12.88 KB | 15.05 KB |
Webpage 7 | 533.23 KB | 106.87 KB | 84.02 KB | 92.93 KB |
Webpage 8 | 146.41 KB | 27.86 KB | 22.59 KB | 25.08 KB |
Webpage 9 | 30.54 KB | 6.69 KB | 5.4 KB | 6.53 KB |
Webpage 10 | 47.92 KB | 10.23 KB | 8.22 KB | 9.86 KB |
Webpage 11 | 116.57 KB | 22.35 KB | 18.55 KB | 20.87 KB |
Webpage 12 | 217.89 KB | 36.57 KB | 26.93 KB | 30.44 KB |
Average gzip compression ratio: 4.73
Average Brotli compression ratio: 5.91
Average Zstandard compression ratio: 5.21
So what does this all mean and how does it relate to the web, networking, and PHP?
Well, in the context of serving assets on the web, without a better compression ratio it’s unlikely that anything will unseat gzip. Therefore while Zstandard’s compression speed is very impressive, it is not useful for serving websites. Morever, modern browsers can all decompress gzip on the fly. There is no browser support for Zstandard. That being said, one can still use PHP and the zstd extension to compress and decompress files server side.
Brotli, on the other hand, does have a better compression ratio than gzip (and Zstandard). Google claims Brotli’s ratio is about 20-30% higher. Compression ratio improvements are heavily influenced by the type of file being compressed. The tests I ran (table above) show an average compression ratio improvement of about 24%. However, Brotli’s compression speed is about half that of gzip. However, for smaller file sizes (web pages), the compression ratio improvement trumps the loss in compression speed. Brotli is superior than gzip for serving web assets.
Brotli, unlike gzip, is not universally supported by browsers. In fact as of now it is not supported by Safari or IE/Edge but only new versions of Chrome and Firefox. Also, Brotli will only be properly decoded by browsers when served over https. There is a PHP extension for compressing as well as an nginx module.
As of today, Brotli is ready and worth it for production use based on my tests. We can use PHP to compress page cached files and decompress on the fly (perhaps an addition to Simple Cache) or use nginx to detect browser capabilities and serve Brotli compressed files accordingly. The nginx method is an easy win since all we need to do is compile the Brotli module in nginx and tweak our configuration file.
Shawn Maust wrote a nice article on compiling nginx with the Brotli module. I also wrote an nginx config file that let’s you enable Brotli with PHP7 FPM but fall back to gzip for non-supporting browsers.
Compression algorithms will continue to be iterated on and improved. For now, we can improve experiences for users and decrease bandwidth usage with Brotli.
Edit: The compression levels used for my tests were 9 for gzip, 11 for Brotli, and 22 for Zstandard.
Custom Contact Forms 7.1 – Advanced Notifications
Custom Contact Forms 7.1 has been released. The new version contains some bug fixes for sitemap SEO, non-American date formats, and advanced notifications. Specifically, I wanted to highly the advanced notifications feature which is very powerful.
In the new version, you can create an unlimited amount of notifications which allows you to send different notifications to administrators, editors, the form submitter, etc. Here is a screenshot of the new notification editing experience:
For each of your forms, you can view notifications in list view giving you an easy way to see all your notifications:
Advanced notifications will continue to be improved in newer versions as we believe notification functionality is extremely important to web forms.
Best Practices for WordPress in Enterprise at ZendCon 2015
Today I am presenting at ZendCon 2015 on best practices for WordPress in enterprise.
10up open sourced their WordPress Best Practices (PHP, JavaScript, tools, and workflows) in late 2014. As the Director of Web Engineering at 10up, I drove this project and am the lead contributor to the docs. These best practices allow developers to build sites that scale, perform, and are secure on sites receiving millions of page views per day. They also standardize development practices in such a way that facilitates team collaboration. This talk will highlight some important parts of the best practices and reveal some valuable tips about how we (10up) engineer some of the most complex and most viewed WordPress sites in the world.
The slides are available here:
For the past year or so I’ve been using Automattic’s Syndication plugin to pull feed content into my WordPress plugin. Feeds that I designate are pulled in as posts using WordPress Cron. I decided while the plugin worked well for the most part, it wasn’t quite meeting my needs. This prompted me to build a new plugin called Feed Pull.
Here are some differences between the two plugins:
- Feed Pull is a plugin for pulling content out of XML feeds. Syndication has feed pulling as well as content pushing features.
- Feed Pull has a much friendlier feed management screen. Both Syndication and Feed Pull use the WordPress post edit, screen, however Feed Pull offers a much cleaner experience from the way options are presented to the instructions provided. At the moment Feed Pull does not have all the features of Syndication such as taxonomy and constant field mapping. However, Feed Pull probably has everything you need and is very extensible.
- Feed Pull has far superior error logging to Syndication.
- Feed Pull allows you to schedule content pulling in the future.
- Feed Pull allows you to do manual pulls using AJAX rather than a sometimes frustrating one-time cron job.
Feed Pull contributions are always welcome on Github.