cartodb-4.42/lib/tasks/cache_maintenance.rake

9 lines
237 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
namespace :cartodb do
namespace :cache do
desc "invalidate Varnish surrogate key"
task :invalidate_surrogate_key, [:key] => :environment do |t, args|
CartoDB::Varnish.new.purge_surrogate_key(args[:key])
end
end
end