class ActiveFedora::CachingConnection

def cache

Enable the cache within the block.
def cache
  old = @cache_enabled
  @cache_enabled = true
  yield
ensure
  @cache_enabled = old
  clear_cache unless @cache_enabled
end