Method: Esse::Index::ClassMethods#open

Defined in:
lib/esse/index/indices.rb

#open(suffix: nil, **options) ⇒ Object

Open a previously closed index

Parameters:

  • options (Hash)

    a customizable set of options

Options Hash (**options):

  • :suffix (String, nil)

    The index suffix

See Also:

  • Transport#open


119
120
121
# File 'lib/esse/index/indices.rb', line 119

def open(suffix: nil, **options)
  cluster.api.open(index: index_name(suffix: suffix), **options)
end