You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/app/models/varnish_cache_handler.rb

6 lines
179 B

module VarnishCacheHandler
def invalidate_varnish_cache(options = {})
options[:regex] ||= '.*'
CartoDB::Varnish.new.purge("#{database_name}#{options[:regex]}")
end
end