Dear all,<br><br>Is there a way to update a value in memcached using the difference?<br><br>For example if I cached an array (e.g. the result of a select query from a database) using the key 123:<br>set (&#39;123&#39;, $a); // $a an array containing 10 rows
<br><br>and after a while the table or fields got updated in the database, what I will need to do now is to do the same thing I did before which is set (&#39;123&#39;, $a); // now $a contains more or less rows with some modified fields
<br><br>This means I have an overhead (the rows or fields that didn&#39;t change) that I need to cache again, so is there a way that makes me set only the difference (same as patching a source file using diff -u result).<br>
<br>Regards,<br>