You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
394 B
12 lines
394 B
if Rails.env.production?
|
|
config.cache_store = :redis_store, 'redis://localhost:6379/0/cache', { expires_in: 90.minutes }
|
|
|
|
config.after_initialize do
|
|
Elasticsearch::Client.new hosts: ['192.168.80.168:9200'], retry_on_failure: true
|
|
end
|
|
elsif Rails.env.development?
|
|
config.after_initialize do
|
|
Elasticsearch::Client.new hosts: ['localhost:9200'], retry_on_failure: true
|
|
end
|
|
end
|