Hello, I have a parent object Customer, which gets cached in an ASP.NET application. Most of the data is read-only, which is perfect for this approach; however, one relationship (Orders) changes, and these changes can be caused by several people using the system. So, The Customer object, and the static data about the customer, is cached in the system. Initially I was caching the Orders as well, but this won't work any more because Orders will need to be updated immediately whenever there is a change
Read More...