SlideShare a Scribd company logo
1 of 55
Download to read offline
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
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
@kengyu_n Kengyu.Nakamura
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
通信時間
通信時間
PHPの実行
MySQLの実行
翻訳処理
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
WordPress
WordPress
WordPress
WordPress
WordPress
WordPress
WordPress
WordPress
WordPress
WordPress
WordPress
ロード時間 リクエスト数
PHP5.6+OPcache 70ms 17.2
PHP7.0RC4+OPcache 34ms 47.1
HHVM3.9 28ms 58.6
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
<?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;
?>
超高速WordPress ~ PHP7 vs HHVM vs PHP5.6
超高速WordPress ~ PHP7 vs HHVM vs PHP5.6
超高速WordPress ~ PHP7 vs HHVM vs PHP5.6

More Related Content

What's hot (15)

Diana
DianaDiana
Diana
 
Slidego2
Slidego2Slidego2
Slidego2
 
Ionic2
Ionic2Ionic2
Ionic2
 
Kosheeka discover gingival fibroblasts
Kosheeka discover gingival fibroblastsKosheeka discover gingival fibroblasts
Kosheeka discover gingival fibroblasts
 
Publimarketing chile 2012
Publimarketing chile 2012Publimarketing chile 2012
Publimarketing chile 2012
 
Seasonal hiring retail_imomentous
Seasonal hiring retail_imomentousSeasonal hiring retail_imomentous
Seasonal hiring retail_imomentous
 
recommendation letter
recommendation letterrecommendation letter
recommendation letter
 
Penggunaan kata ulang
Penggunaan kata ulangPenggunaan kata ulang
Penggunaan kata ulang
 
Boletin de diciembre
Boletin de diciembreBoletin de diciembre
Boletin de diciembre
 
Queletra 3
Queletra   3Queletra   3
Queletra 3
 
Molyneux
MolyneuxMolyneux
Molyneux
 
Web designer oglas
Web designer oglasWeb designer oglas
Web designer oglas
 
LBIX
LBIXLBIX
LBIX
 
QuickBooks Outline
QuickBooks OutlineQuickBooks Outline
QuickBooks Outline
 
Azoka Ikaskuntza Nekazal Turismoa Gastronomia
Azoka Ikaskuntza Nekazal Turismoa GastronomiaAzoka Ikaskuntza Nekazal Turismoa Gastronomia
Azoka Ikaskuntza Nekazal Turismoa Gastronomia
 

超高速WordPress ~ PHP7 vs HHVM vs PHP5.6

  • 1.
  • 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
  • 3.
  • 4.
  • 5.
  • 6.
  • 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
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 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
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 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
  • 32.
  • 33.
  • 42.
  • 43.
  • 44.
  • 46.
  • 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
  • 49.
  • 50.
  • 51.
  • 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; ?>