PERF: do not expire cache when PostActionType is saved (#28337)

Reload is too expensive in a multisite environment. A proper way to expire cache is coming with the next PR.
This commit is contained in:
Krzysztof Kotlarek
2024-08-13 18:01:31 +10:00
committed by GitHub
parent 47f749744f
commit d2c09e5ce1
2 changed files with 10 additions and 2 deletions

View File

@ -6,6 +6,7 @@ PostActionType.seed do |s|
s.is_flag = false
s.icon = "heart"
s.position = 2
s.skip_expire_cache_callback = true
end
PostActionType.seed do |s|
@ -13,6 +14,7 @@ PostActionType.seed do |s|
s.name_key = "off_topic"
s.is_flag = true
s.position = 3
s.skip_expire_cache_callback = true
end
PostActionType.seed do |s|
@ -20,6 +22,7 @@ PostActionType.seed do |s|
s.name_key = "inappropriate"
s.is_flag = true
s.position = 4
s.skip_expire_cache_callback = true
end
PostActionType.seed do |s|
@ -27,6 +30,7 @@ PostActionType.seed do |s|
s.name_key = "spam"
s.is_flag = true
s.position = 6
s.skip_expire_cache_callback = true
end
PostActionType.seed do |s|
@ -34,6 +38,7 @@ PostActionType.seed do |s|
s.name_key = "notify_user"
s.is_flag = true
s.position = 7
s.skip_expire_cache_callback = true
end
PostActionType.seed do |s|
@ -41,4 +46,5 @@ PostActionType.seed do |s|
s.name_key = "notify_moderators"
s.is_flag = true
s.position = 8
s.skip_expire_cache_callback = true
end