2018-02-10 07:04:47 +09:00
|
|
|
enabled = ENV['ES_ENABLED'] == 'true'
|
|
|
|
host = ENV.fetch('ES_HOST') { 'localhost' }
|
|
|
|
port = ENV.fetch('ES_PORT') { 9200 }
|
|
|
|
fallback_prefix = ENV.fetch('REDIS_NAMESPACE') { nil }
|
|
|
|
prefix = ENV.fetch('ES_PREFIX') { fallback_prefix }
|
|
|
|
|
|
|
|
Chewy.settings = {
|
|
|
|
host: "#{host}:#{port}",
|
|
|
|
prefix: prefix,
|
|
|
|
enabled: enabled,
|
|
|
|
journal: false,
|
2018-02-21 01:25:16 +09:00
|
|
|
sidekiq: { queue: 'pull' },
|
2018-02-10 07:04:47 +09:00
|
|
|
}
|
|
|
|
|
2019-10-01 08:19:11 +09:00
|
|
|
Chewy.root_strategy = :custom_sidekiq
|
|
|
|
Chewy.request_strategy = :custom_sidekiq
|
|
|
|
Chewy.use_after_commit_callbacks = false
|
2018-02-10 07:04:47 +09:00
|
|
|
|
|
|
|
module Chewy
|
|
|
|
class << self
|
|
|
|
def enabled?
|
|
|
|
settings[:enabled]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|