0 votes
in PHP by
Explain how you can update Memcached when you make changes to PHP?

1 Answer

0 votes
by

When PHP changes you can update Memcached by

Clearing the Cache proactively: Clearing the cache when an insert or update is made

Resetting the Cache: It is similar to the first method but rather than just deleting the keys and waiting for the next request for the data to refresh the cache, reset the values after the insert or update.

Related questions

+1 vote
asked Jun 22, 2019 in PHP by SakshiSharma
0 votes
asked Jun 23, 2019 in PHP by SakshiSharma
...