Sha256: 18171266400d6797b7eac1077409276910888d7dbed241b21cac028d276301ef
Contents?: true
Size: 621 Bytes
Versions: 30
Compression:
Stored size: 621 Bytes
Contents
module Gummi module DbLayer module Fields class NgramAndPlain < Virtus::Attribute def coerce(value) value end def mapping { type: 'multi_field', fields: { name => { type: 'string', index_analyzer: 'text_index_analyzer', search_analyzer: 'text_search_analyzer' }, :plain => { type: 'string', index_analyzer: 'string_index_analyzer', search_analyzer: 'text_search_analyzer' }, } } end end end end end
Version data entries
30 entries across 30 versions & 1 rubygems