diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-05-24 14:49:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-24 14:49:13 +0200 |
commit | 1beb8db4e26d1bd4a801b432f466d948b3b562fc (patch) | |
tree | 39de9e2163c3737f182d67ba8718cde32d6a0296 /lib/chewy | |
parent | c279dbd47082e908d98dc8cf869c0ff7fc19f1ae (diff) | |
parent | 228ec75048a5527237720cdbaa8d6ab086ea6c84 (diff) |
Merge pull request #1779 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'lib/chewy')
-rw-r--r-- | lib/chewy/strategy/custom_sidekiq.rb | 11 | ||||
-rw-r--r-- | lib/chewy/strategy/mastodon.rb | 27 |
2 files changed, 27 insertions, 11 deletions
diff --git a/lib/chewy/strategy/custom_sidekiq.rb b/lib/chewy/strategy/custom_sidekiq.rb deleted file mode 100644 index 794ae4ed4..000000000 --- a/lib/chewy/strategy/custom_sidekiq.rb +++ /dev/null @@ -1,11 +0,0 @@ -# frozen_string_literal: true - -module Chewy - class Strategy - class CustomSidekiq < Sidekiq - def update(_type, _objects, _options = {}) - super if Chewy.enabled? - end - end - end -end diff --git a/lib/chewy/strategy/mastodon.rb b/lib/chewy/strategy/mastodon.rb new file mode 100644 index 000000000..ee8b92186 --- /dev/null +++ b/lib/chewy/strategy/mastodon.rb @@ -0,0 +1,27 @@ +# frozen_string_literal: true + +module Chewy + class Strategy + class Mastodon < Base + def initialize + super + + @stash = Hash.new { |hash, key| hash[key] = [] } + end + + def update(type, objects, _options = {}) + @stash[type].concat(type.root.id ? Array.wrap(objects) : type.adapter.identify(objects)) if Chewy.enabled? + end + + def leave + RedisConfiguration.with do |redis| + redis.pipelined do |pipeline| + @stash.each do |type, ids| + pipeline.sadd("chewy:queue:#{type.name}", ids) + end + end + end + end + end + end +end |