php - Opcache equivalent function to apc store -
we need upgrade php version 5.3 5.5 of 1 project that´s using apc. so, i´ve seen in php 5.5 there new cache library use instead of apc, opcache. have read docs , have few doubts.
actually, in 1 specific part of project using apc store
, fetch
functions store data, haven´t seen similar functions same task opcache. question simple, possible same opcache?
thanks in advance.
you can restore store
, fetch
functions installing apcu
sudo apt-get install php5-apcu
by installing apcu
extension_loaded('apc')
return true
, don't need rename of old functions used.
i'm using on debian php5.6 opcache enabled
Comments
Post a Comment