module Ramco::API::ClearCache

Public Instance Methods

clear_cache(params={}) click to toggle source

ClearCache Clears the server-side metadata cache. If an entity or attribute has been added (or removed), then clearing the cache will permit the changes to be reflected immediately. The cache will normally expire every 24 hours.

Returns json

# File lib/ramco/api/clear_cache.rb, line 12
def clear_cache(params={})
  params['operation'] = "ClearCache"
  request(connection, params)
end