Solr supports two styles of schema: a managed schema and a manually maintained schema.xml file. When using a managed schema, features such as the Schema API and Schemaless Mode are available. When using schema.xml, the only way changes can be made to Solr’s schema is by manually editing the file.

The in solrconfig.xml defines whether your system will use a managed schema or schema.xml.

<config>
  <schemaFactory>
    ...
  </schemaFactory>
</config>


While the “read” features of the Schema API are supported for all schema types, support for making schema modifications programmatically depends on the in use.

https://solr.apache.org/guide/6_6/filter-descriptions.html

Kullanılacak filtreler ve tokenizer’lar

  1. Regex tokenizer ve Hyphenated Words Filter dehyphenation işlemi için denenecek.
  2. Stopwords filter
  3. Hunspell Stem Filter
  4. Managed Stop Filter incelenecek
  5. Length Filter
  6. (Managed) synonym filter incelenecek.
  7. Shingle Filter: N-Gram kelimeler için…
  8. Pattern Replace Filter (De hyphen için kullanılabilir.)
  9. Synonym Graph Filter
  10. Trim Filter
  11. Apostrphe Filter Factory

Leave a Reply

Your email address will not be published. Required fields are marked *