You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- class ResetPlatformCacheJob < ApplicationJob
- queue_as :cache
-
- def perform
- Cache::PlatformFollowCountService.new.reset
- Cache::PlatformIssueCountService.new.reset
- Cache::PlatformProjectCountService.new.reset
- Cache::PlatformProjectForkCountService.new.reset
- Cache::PlatformProjectLanguagesCountService.new.reset
- Cache::PlatformProjectPraisesCountService.new.reset
- Cache::PlatformProjectWatchersCountService.new.reset
- Cache::PlatformPullrequestCountService.new.reset
- end
- end
|