Submit Search
超高速WordPress ~ PHP7 vs HHVM vs PHP5.6
•
20 likes
•
25,263 views
Kengyu Nakamura
Follow
PHPカンファレンス2015講演資料
Read less
Read more
1 of 55
Download now
Downloaded 24 times
More Related Content
超高速WordPress ~ PHP7 vs HHVM vs PHP5.6
2.
P r i
m e S t r a t e g y C o . , L t d . W o r d P r e s s F u l l y M a n a g e d S e r v i c e D i v i s i o n
7.
P r i
m e S t r a t e g y C o . , L t d . W o r d P r e s s F u l l y M a n a g e d S e r v i c e D i v i s i o n
8.
@kengyu_n Kengyu.Nakamura
14.
P r i
m e S t r a t e g y C o . , L t d . W o r d P r e s s F u l l y M a n a g e d S e r v i c e D i v i s i o n
28.
通信時間 通信時間 PHPの実行 MySQLの実行 翻訳処理
29.
P r i
m e S t r a t e g y C o . , L t d . W o r d P r e s s F u l l y M a n a g e d S e r v i c e D i v i s i o n
30.
WordPress
31.
WordPress
34.
WordPress
35.
WordPress
36.
WordPress
37.
WordPress
38.
WordPress
39.
WordPress
40.
WordPress
41.
WordPress
45.
WordPress
47.
ロード時間 リクエスト数 PHP5.6+OPcache 70ms
17.2 PHP7.0RC4+OPcache 34ms 47.1 HHVM3.9 28ms 58.6
48.
P r i
m e S t r a t e g y C o . , L t d . W o r d P r e s s F u l l y M a n a g e d S e r v i c e D i v i s i o n
52.
<?php if ( !
$footer_cache = get_transient( 'footer_cache' ) ) { ob_start(); ?> <footer id="colophon" class="site-footer" role="contentinfo"> <?php get_sidebar( 'footer' ); ?> <div class="site-info"> <?php do_action( 'twentyfourteen_credits' ); ?> <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyfourteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' ); ?></a> </div><!-- .site-info --> </footer><!-- #colophon --> <?php $footer_cache = ob_get_clean(); set_transient( 'footer_cache', $footer_cache, 60 * 5 ); } echo $footer_cache; ?>
Download