We are in the process of scaling one of our web applications from a single server to a web farm. The application currently uses the Http runtime cache to cache the reference data for the application. The data is 'similar' to product catalog:
- categories (ie List)
- products (ie List)
As the data is updated very infrequently, we also pre-compute some lookups
- ProductsByCategory (ie. Dictionary)
The collections are currently cached as whole objects... ie the entire list / dictionary is get and put. The collections are typically used as I usually need to populate drop down lists / list boxes / etc.
The reference data needs to be kept in sync across the servers in the farm. Enter AppFabric...
Is our above caching model still appropriate for AppFabric caching? The examples I have come across appear to put individual item in the cache as opposed to entire collections (with 'regions' being used for bulk get operations)
What is the best way, if at all, to keep the reference data updated 'together'... ie if the categories are refreshed I need the products refreshed to reflect the latest categories.