0 votes
in MemCached by
How would you update Memcached when data changes?

1 Answer

0 votes
by

There are two methods to update Memchached when data changes:

  • By clearing the cache proactively: You can update Memcached by clearing the cache while insertion or updation is made.
  • By resetting the cache: It is slightly similar to the first method, but it doesn't delete the keys and wait for the next request for the data to refresh the cache, it resets the values after the insert or update.

Related questions

0 votes
asked Jul 30, 2023 in MemCached by Robin
0 votes
asked Jul 28, 2023 in MemCached by sharadyadav1986
...