gitlab-org--gitlab-foss/lib/tasks/cache.rake

7 lines
121 B
Ruby
Raw Normal View History

2013-03-31 20:45:58 +00:00
namespace :cache do
desc "GITLAB | Clear redis cache"
task :clear => :environment do
Rails.cache.clear
end
end