forked from OpenNeo/impress
Matchu
6e09b8bc10
Confirmed features: * Output (retrieval, sorting, etc.) * Name (positive and negative, but new behavior) * Flags (positive and negative) Planned features: * users:owns, user:wants Known issues: * Sets are broken * Don't render properly * Shouldn't actually be done as joined sets, anyway, since we actually want (set1_zone1 OR set1_zone2) AND (set2_zone1 OR set2_zone2), which will require breaking it into multiple terms queries. * Name has regressed: ignores phrases, doesn't require *all* words. While we're breaking sets into multiple queries, maybe we'll do something similar for name. In fact, we really kinda have to if we're gonna keep sorting by name, since "straw hat" returns all hats. Eww.
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
# ANCHORS litheral key: it will not be used as template
|
|
# you can store here fragments of structures to reuse below
|
|
ANCHORS:
|
|
-
|
|
|
|
# This is a dynamic index name The settings and mapping below will work with any index.
|
|
# The default index name generated by Flex is usually <application_name>_<environment>,
|
|
# but you may have changed it in the initializers/flex.rb or you can hardcode it if you prefer.
|
|
<%= Flex::Configuration.variables[:index] %>:
|
|
|
|
settings:
|
|
number_of_shards: 5
|
|
number_of_replicas: 1
|
|
|
|
# add your custom mappings here
|
|
mappings:
|
|
item:
|
|
properties:
|
|
# Name is an object of locale fields, which are in turn multi_fields.
|
|
# First, an analyzed string for searching. Second, an untouched
|
|
# string for sorting. Elasticsearch requires that both be expliticly
|
|
# named in the mapping, but will handle the copy implicitly.
|
|
name:
|
|
type: object
|
|
properties:
|
|
<% I18n.usable_locales_with_neopets_language_code.each do |locale| %>
|
|
<%= locale %>:
|
|
type: multi_field
|
|
fields:
|
|
<%= locale %>:
|
|
type: string
|
|
index: analyzed
|
|
untouched:
|
|
type: string
|
|
index: not_analyzed
|
|
<% end %>
|