What's the best approach to synchronizing a client cache and a server cache.  
The client cache is there to reduce network calls.
The server cache is here to reduce database queries.
If there's an update to the server data, what's the best approach to making sure the client cache is up to date?
					The client cache is there to reduce network calls.
The server cache is here to reduce database queries.
If there's an update to the server data, what's the best approach to making sure the client cache is up to date?
 
	 
	
Comment