2023-07-27 14:11:17 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class InstancesIndex < Chewy::Index
|
2023-08-14 15:46:16 +00:00
|
|
|
settings index: index_preset(refresh_interval: '30s')
|
2023-07-27 14:11:17 +00:00
|
|
|
|
|
|
|
index_scope ::Instance.searchable
|
|
|
|
|
|
|
|
root date_detection: false do
|
2023-08-21 14:50:22 +00:00
|
|
|
field :domain, type: 'text', index_prefixes: { min_chars: 1, max_chars: 5 }
|
2023-07-27 14:11:17 +00:00
|
|
|
field :accounts_count, type: 'long'
|
|
|
|
end
|
|
|
|
end
|