module Restforce::Concerns::Caching

def with_caching

def with_caching
  options[:use_cache] = true
  yield
ensure
  options[:use_cache] = false
end