using (store.AggressivelyCacheFor(TimeSpan.FromMinutes(30))) {
}
using (store.UseCachedItemsFrom(TimeSpan.FromMinutes(30))) {
}
Actually there are 2 perspectives you could look at it
The one we used when naming it considers what happens when this code is executed for the first time. The doc retrieved will be cached for that period of time and no further calls to the server will be made by that code block
Chris,You use: DisableAggressiveCaching and make the query that you want to refresh.That would go to the DB, and also load it to the cache.