Since this is what I am trying to do. I want to make some variable values available to a PHP script. The values are fetched from the internet every minute (they change). I do not want the values to be written and written again to the SSD. Does Memcached do the job of storing them at any given time on system memory only, with no SSD writing? Thanks.
Does the use of Memcached to store PHP variables involve any writing to the hard disk drive?
208 views Asked by W.M. At
2
As the name implies, memcached only stores things in local memory. If you restart the service any data inside is lost.