managed-schema 60 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <!--
  17. This is the Solr schema file. This file should be named "schema.xml" and
  18. should be in the conf directory under the solr home
  19. (i.e. ./solr/conf/schema.xml by default)
  20. or located where the classloader for the Solr webapp can find it.
  21. This example schema is the recommended starting point for users.
  22. It should be kept correct and concise, usable out-of-the-box.
  23. For more information, on how to customize this file, please see
  24. http://wiki.apache.org/solr/SchemaXml
  25. PERFORMANCE NOTE: this schema includes many optional features and should not
  26. be used for benchmarking. To improve performance one could
  27. - set stored="false" for all fields possible (esp large fields) when you
  28. only need to search on the field but don't need to return the original
  29. value.
  30. - set indexed="false" if you don't need to search on the field, but only
  31. return the field as a result of searching on other indexed fields.
  32. - remove all unneeded copyField statements
  33. - for best index size and searching performance, set "index" to false
  34. for all general text fields, use copyField to copy them to the
  35. catchall "text" field, and use that for searching.
  36. - For maximum indexing performance, use the ConcurrentUpdateSolrServer
  37. java client.
  38. - Remember to run the JVM in server mode, and use a higher logging level
  39. that avoids logging every request
  40. -->
  41. <schema name="example" version="1.6">
  42. <!-- attribute "name" is the name of this schema and is only used for display purposes.
  43. version="x.y" is Solr's version number for the schema syntax and
  44. semantics. It should not normally be changed by applications.
  45. 1.0: multiValued attribute did not exist, all fields are multiValued
  46. by nature
  47. 1.1: multiValued attribute introduced, false by default
  48. 1.2: omitTermFreqAndPositions attribute introduced, true by default
  49. except for text fields.
  50. 1.3: removed optional field compress feature
  51. 1.4: autoGeneratePhraseQueries attribute introduced to drive QueryParser
  52. behavior when a single string produces multiple tokens. Defaults
  53. to off for version >= 1.4
  54. 1.5: omitNorms defaults to true for primitive field types
  55. (int, float, boolean, string...)
  56. 1.6: useDocValuesAsStored defaults to true.
  57. -->
  58. <!-- Valid attributes for fields:
  59. name: mandatory - the name for the field
  60. type: mandatory - the name of a field type from the
  61. <types> fieldType section
  62. indexed: true if this field should be indexed (searchable or sortable)
  63. stored: true if this field should be retrievable
  64. docValues: true if this field should have doc values. Doc values are
  65. useful for faceting, grouping, sorting and function queries. Although not
  66. required, doc values will make the index faster to load, more
  67. NRT-friendly and more memory-efficient. They however come with some
  68. limitations: they are currently only supported by StrField, UUIDField
  69. and all Trie*Fields, and depending on the field type, they might
  70. require the field to be single-valued, be required or have a default
  71. value (check the documentation of the field type you're interested in
  72. for more information)
  73. multiValued: true if this field may contain multiple values per document
  74. omitNorms: (expert) set to true to omit the norms associated with
  75. this field (this disables length normalization and index-time
  76. boosting for the field, and saves some memory). Only full-text
  77. fields or fields that need an index-time boost need norms.
  78. Norms are omitted for primitive (non-analyzed) types by default.
  79. termVectors: [false] set to true to store the term vector for a
  80. given field.
  81. When using MoreLikeThis, fields used for similarity should be
  82. stored for best performance.
  83. termPositions: Store position information with the term vector.
  84. This will increase storage costs.
  85. termOffsets: Store offset information with the term vector. This
  86. will increase storage costs.
  87. termPayloads: Store payload information with the term vector. This
  88. will increase storage costs.
  89. required: The field is required. It will throw an error if the
  90. value does not exist
  91. default: a value that should be used if no value is specified
  92. when adding a document.
  93. -->
  94. <!-- field names should consist of alphanumeric or underscore characters only and
  95. not start with a digit. This is not currently strictly enforced,
  96. but other field names will not have first class support from all components
  97. and back compatibility is not guaranteed. Names with both leading and
  98. trailing underscores (e.g. _version_) are reserved.
  99. -->
  100. <!-- If you remove this field, you must _also_ disable the update log in solrconfig.xml
  101. or Solr won't start. _version_ and update log are required for SolrCloud
  102. -->
  103. <field name="_version_" type="long" indexed="true" stored="true"/>
  104. <!-- points to the root document of a block of nested documents. Required for nested
  105. document support, may be removed otherwise
  106. -->
  107. <field name="_root_" type="string" indexed="true" stored="false"/>
  108. <!-- Only remove the "id" field if you have a very good reason to. While not strictly
  109. required, it is highly recommended. A <uniqueKey> is present in almost all Solr
  110. installations. See the <uniqueKey> declaration below where <uniqueKey> is set to "id".
  111. Do NOT change the type and apply index-time analysis to the <uniqueKey> as it will likely
  112. make routing in SolrCloud and document replacement in general fail. Limited _query_ time
  113. analysis is possible as long as the indexing process is guaranteed to index the term
  114. in a compatible way. Any analysis applied to the <uniqueKey> should _not_ produce multiple
  115. tokens
  116. -->
  117. <field name="id" type="string" indexed="true" stored="true" required="true" multiValued="false" />
  118. <field name="pre" type="preanalyzed" indexed="true" stored="true"/>
  119. <field name="sku" type="text_en_splitting_tight" indexed="true" stored="true" omitNorms="true"/>
  120. <field name="name" type="text_general" indexed="true" stored="true"/>
  121. <field name="manu" type="text_general" indexed="true" stored="true" omitNorms="true"/>
  122. <field name="cat" type="string" indexed="true" stored="true" multiValued="true"/>
  123. <field name="features" type="text_general" indexed="true" stored="true" multiValued="true"/>
  124. <field name="includes" type="text_general" indexed="true" stored="true" termVectors="true" termPositions="true" termOffsets="true" />
  125. <field name="weight" type="float" indexed="true" stored="true"/>
  126. <field name="price" type="float" indexed="true" stored="true"/>
  127. <field name="popularity" type="int" indexed="true" stored="true" />
  128. <field name="inStock" type="boolean" indexed="true" stored="true" />
  129. <field name="store" type="location" indexed="true" stored="true"/>
  130. <!-- Common metadata fields, named specifically to match up with
  131. SolrCell metadata when parsing rich documents such as Word, PDF.
  132. Some fields are multiValued only because Tika currently may return
  133. multiple values for them. Some metadata is parsed from the documents,
  134. but there are some which come from the client context:
  135. "content_type": From the HTTP headers of incoming stream
  136. "resourcename": From SolrCell request param resource.name
  137. -->
  138. <field name="title" type="text_general" indexed="true" stored="true" multiValued="true"/>
  139. <field name="subject" type="text_general" indexed="true" stored="true"/>
  140. <field name="description" type="text_general" indexed="true" stored="true"/>
  141. <field name="comments" type="text_general" indexed="true" stored="true"/>
  142. <field name="author" type="text_general" indexed="true" stored="true"/>
  143. <field name="keywords" type="text_general" indexed="true" stored="true"/>
  144. <field name="category" type="text_general" indexed="true" stored="true"/>
  145. <field name="resourcename" type="text_general" indexed="true" stored="true"/>
  146. <field name="url" type="text_general" indexed="true" stored="true"/>
  147. <field name="content_type" type="string" indexed="true" stored="true" multiValued="true"/>
  148. <field name="last_modified" type="date" indexed="true" stored="true"/>
  149. <field name="links" type="string" indexed="true" stored="true" multiValued="true"/>
  150. <field name="_src_" type="string" indexed="false" stored="true"/>
  151. <!-- Main body of document extracted by SolrCell.
  152. NOTE: This field is not indexed by default, since it is also copied to "text"
  153. using copyField below. This is to save space. Use this field for returning and
  154. highlighting document content. Use the "text" field to search the content. -->
  155. <field name="content" type="text_general" indexed="false" stored="true" multiValued="true"/>
  156. <!-- catchall field, containing all other searchable text fields (implemented
  157. via copyField further on in this schema -->
  158. <field name="text" type="text_general" indexed="true" stored="false" multiValued="true"/>
  159. <!-- catchall text field that indexes tokens both normally and in reverse for efficient
  160. leading wildcard queries. -->
  161. <field name="text_rev" type="text_general_rev" indexed="true" stored="false" multiValued="true"/>
  162. <!-- non-tokenized version of manufacturer to make it easier to sort or group
  163. results by manufacturer. copied from "manu" via copyField -->
  164. <field name="manu_exact" type="string" indexed="true" stored="false"/>
  165. <field name="payloads" type="payloads" indexed="true" stored="true"/>
  166. <!--
  167. Some fields such as popularity and manu_exact could be modified to
  168. leverage doc values:
  169. <field name="popularity" type="int" indexed="true" stored="true" docValues="true" />
  170. <field name="manu_exact" type="string" indexed="false" stored="false" docValues="true" />
  171. <field name="cat" type="string" indexed="true" stored="true" docValues="true" multiValued="true"/>
  172. Although it would make indexing slightly slower and the index bigger, it
  173. would also make the index faster to load, more memory-efficient and more
  174. NRT-friendly.
  175. -->
  176. <!-- Dynamic field definitions allow using convention over configuration
  177. for fields via the specification of patterns to match field names.
  178. EXAMPLE: name="*_i" will match any field ending in _i (like myid_i, z_i)
  179. RESTRICTION: the glob-like pattern in the name attribute must have
  180. a "*" only at the start or the end. -->
  181. <dynamicField name="*_i" type="int" indexed="true" stored="true"/>
  182. <dynamicField name="*_is" type="int" indexed="true" stored="true" multiValued="true"/>
  183. <dynamicField name="*_s" type="string" indexed="true" stored="true" />
  184. <dynamicField name="*_ss" type="string" indexed="true" stored="true" multiValued="true"/>
  185. <dynamicField name="*_l" type="long" indexed="true" stored="true"/>
  186. <dynamicField name="*_ls" type="long" indexed="true" stored="true" multiValued="true"/>
  187. <dynamicField name="*_t" type="text_general" indexed="true" stored="true"/>
  188. <dynamicField name="*_txt" type="text_general" indexed="true" stored="true" multiValued="true"/>
  189. <dynamicField name="*_en" type="text_en" indexed="true" stored="true" multiValued="true"/>
  190. <dynamicField name="*_b" type="boolean" indexed="true" stored="true"/>
  191. <dynamicField name="*_bs" type="boolean" indexed="true" stored="true" multiValued="true"/>
  192. <dynamicField name="*_f" type="float" indexed="true" stored="true"/>
  193. <dynamicField name="*_fs" type="float" indexed="true" stored="true" multiValued="true"/>
  194. <dynamicField name="*_d" type="double" indexed="true" stored="true"/>
  195. <dynamicField name="*_ds" type="double" indexed="true" stored="true" multiValued="true"/>
  196. <!-- Type used to index the lat and lon components for the "location" FieldType -->
  197. <dynamicField name="*_coordinate" type="tdouble" indexed="true" stored="false" />
  198. <dynamicField name="*_dt" type="date" indexed="true" stored="true"/>
  199. <dynamicField name="*_dts" type="date" indexed="true" stored="true" multiValued="true"/>
  200. <dynamicField name="*_p" type="location" indexed="true" stored="true"/>
  201. <!-- some trie-coded dynamic fields for faster range queries -->
  202. <dynamicField name="*_ti" type="tint" indexed="true" stored="true"/>
  203. <dynamicField name="*_tl" type="tlong" indexed="true" stored="true"/>
  204. <dynamicField name="*_tf" type="tfloat" indexed="true" stored="true"/>
  205. <dynamicField name="*_td" type="tdouble" indexed="true" stored="true"/>
  206. <dynamicField name="*_tdt" type="tdate" indexed="true" stored="true"/>
  207. <dynamicField name="*_c" type="currency" indexed="true" stored="true"/>
  208. <dynamicField name="ignored_*" type="ignored" multiValued="true"/>
  209. <dynamicField name="attr_*" type="text_general" indexed="true" stored="true" multiValued="true"/>
  210. <dynamicField name="random_*" type="random" />
  211. <!-- uncomment the following to ignore any fields that don't already match an existing
  212. field name or dynamic field, rather than reporting them as an error.
  213. alternately, change the type="ignored" to some other type e.g. "text" if you want
  214. unknown fields indexed and/or stored by default -->
  215. <!--dynamicField name="*" type="ignored" multiValued="true" /-->
  216. <!-- Field to use to determine and enforce document uniqueness.
  217. Unless this field is marked with required="false", it will be a required field
  218. -->
  219. <uniqueKey>id</uniqueKey>
  220. <!-- DEPRECATED: The defaultSearchField is consulted by various query parsers when
  221. parsing a query string that isn't explicit about the field. Machine (non-user)
  222. generated queries are best made explicit, or they can use the "df" request parameter
  223. which takes precedence over this.
  224. Note: Un-commenting defaultSearchField will be insufficient if your request handler
  225. in solrconfig.xml defines "df", which takes precedence. That would need to be removed.
  226. <defaultSearchField>text</defaultSearchField> -->
  227. <!-- DEPRECATED: The defaultOperator (AND|OR) is consulted by various query parsers
  228. when parsing a query string to determine if a clause of the query should be marked as
  229. required or optional, assuming the clause isn't already marked by some operator.
  230. The default is OR, which is generally assumed so it is not a good idea to change it
  231. globally here. The "q.op" request parameter takes precedence over this.
  232. <solrQueryParser defaultOperator="OR"/> -->
  233. <!-- copyField commands copy one field to another at the time a document
  234. is added to the index. It's used either to index the same field differently,
  235. or to add multiple fields to the same field for easier/faster searching. -->
  236. <copyField source="cat" dest="text"/>
  237. <copyField source="name" dest="text"/>
  238. <copyField source="manu" dest="text"/>
  239. <copyField source="features" dest="text"/>
  240. <copyField source="includes" dest="text"/>
  241. <copyField source="manu" dest="manu_exact"/>
  242. <!-- Copy the price into a currency enabled field (default USD) -->
  243. <copyField source="price" dest="price_c"/>
  244. <!-- Text fields from SolrCell to search by default in our catch-all field -->
  245. <copyField source="title" dest="text"/>
  246. <copyField source="author" dest="text"/>
  247. <copyField source="description" dest="text"/>
  248. <copyField source="keywords" dest="text"/>
  249. <copyField source="content" dest="text"/>
  250. <copyField source="content_type" dest="text"/>
  251. <copyField source="resourcename" dest="text"/>
  252. <copyField source="url" dest="text"/>
  253. <!-- Create a string version of author for faceting -->
  254. <copyField source="author" dest="author_s"/>
  255. <!-- Above, multiple source fields are copied to the [text] field.
  256. Another way to map multiple source fields to the same
  257. destination field is to use the dynamic field syntax.
  258. copyField also supports a maxChars to copy setting. -->
  259. <!-- <copyField source="*_t" dest="text" maxChars="3000"/> -->
  260. <!-- copy name to alphaNameSort, a field designed for sorting by name -->
  261. <!-- <copyField source="name" dest="alphaNameSort"/> -->
  262. <!-- field type definitions. The "name" attribute is
  263. just a label to be used by field definitions. The "class"
  264. attribute and any other attributes determine the real
  265. behavior of the fieldType.
  266. Class names starting with "solr" refer to java classes in a
  267. standard package such as org.apache.solr.analysis
  268. -->
  269. <!-- The StrField type is not analyzed, but indexed/stored verbatim.
  270. It supports doc values but in that case the field needs to be
  271. single-valued and either required or have a default value.
  272. -->
  273. <fieldType name="string" class="solr.StrField" sortMissingLast="true" />
  274. <!-- boolean type: "true" or "false" -->
  275. <fieldType name="boolean" class="solr.BoolField" sortMissingLast="true"/>
  276. <!-- sortMissingLast and sortMissingFirst attributes are optional attributes are
  277. currently supported on types that are sorted internally as strings
  278. and on numeric types.
  279. This includes "string","boolean", and, as of 3.5 (and 4.x),
  280. int, float, long, date, double, including the "Trie" variants.
  281. - If sortMissingLast="true", then a sort on this field will cause documents
  282. without the field to come after documents with the field,
  283. regardless of the requested sort order (asc or desc).
  284. - If sortMissingFirst="true", then a sort on this field will cause documents
  285. without the field to come before documents with the field,
  286. regardless of the requested sort order.
  287. - If sortMissingLast="false" and sortMissingFirst="false" (the default),
  288. then default lucene sorting will be used which places docs without the
  289. field first in an ascending sort and last in a descending sort.
  290. -->
  291. <!--
  292. Default numeric field types. For faster range queries, consider the tint/tfloat/tlong/tdouble types.
  293. These fields support doc values, but they require the field to be
  294. single-valued and either be required or have a default value.
  295. -->
  296. <fieldType name="int" class="solr.TrieIntField" precisionStep="0" positionIncrementGap="0"/>
  297. <fieldType name="float" class="solr.TrieFloatField" precisionStep="0" positionIncrementGap="0"/>
  298. <fieldType name="long" class="solr.TrieLongField" precisionStep="0" positionIncrementGap="0"/>
  299. <fieldType name="double" class="solr.TrieDoubleField" precisionStep="0" positionIncrementGap="0"/>
  300. <!--
  301. Numeric field types that index each value at various levels of precision
  302. to accelerate range queries when the number of values between the range
  303. endpoints is large. See the javadoc for NumericRangeQuery for internal
  304. implementation details.
  305. Smaller precisionStep values (specified in bits) will lead to more tokens
  306. indexed per value, slightly larger index size, and faster range queries.
  307. A precisionStep of 0 disables indexing at different precision levels.
  308. -->
  309. <fieldType name="tint" class="solr.TrieIntField" precisionStep="8" positionIncrementGap="0"/>
  310. <fieldType name="tfloat" class="solr.TrieFloatField" precisionStep="8" positionIncrementGap="0"/>
  311. <fieldType name="tlong" class="solr.TrieLongField" precisionStep="8" positionIncrementGap="0"/>
  312. <fieldType name="tdouble" class="solr.TrieDoubleField" precisionStep="8" positionIncrementGap="0"/>
  313. <!-- The format for this date field is of the form 1995-12-31T23:59:59Z, and
  314. is a more restricted form of the canonical representation of dateTime
  315. http://www.w3.org/TR/xmlschema-2/#dateTime
  316. The trailing "Z" designates UTC time and is mandatory.
  317. Optional fractional seconds are allowed: 1995-12-31T23:59:59.999Z
  318. All other components are mandatory.
  319. Expressions can also be used to denote calculations that should be
  320. performed relative to "NOW" to determine the value, ie...
  321. NOW/HOUR
  322. ... Round to the start of the current hour
  323. NOW-1DAY
  324. ... Exactly 1 day prior to now
  325. NOW/DAY+6MONTHS+3DAYS
  326. ... 6 months and 3 days in the future from the start of
  327. the current day
  328. Consult the TrieDateField javadocs for more information.
  329. Note: For faster range queries, consider the tdate type
  330. -->
  331. <fieldType name="date" class="solr.TrieDateField" precisionStep="0" positionIncrementGap="0"/>
  332. <!-- A Trie based date field for faster date range queries and date faceting. -->
  333. <fieldType name="tdate" class="solr.TrieDateField" precisionStep="6" positionIncrementGap="0"/>
  334. <!--Binary data type. The data should be sent/retrieved in as Base64 encoded Strings -->
  335. <fieldType name="binary" class="solr.BinaryField"/>
  336. <!-- The "RandomSortField" is not used to store or search any
  337. data. You can declare fields of this type it in your schema
  338. to generate pseudo-random orderings of your docs for sorting
  339. or function purposes. The ordering is generated based on the field
  340. name and the version of the index. As long as the index version
  341. remains unchanged, and the same field name is reused,
  342. the ordering of the docs will be consistent.
  343. If you want different psuedo-random orderings of documents,
  344. for the same version of the index, use a dynamicField and
  345. change the field name in the request.
  346. -->
  347. <fieldType name="random" class="solr.RandomSortField" indexed="true" />
  348. <!-- solr.TextField allows the specification of custom text analyzers
  349. specified as a tokenizer and a list of token filters. Different
  350. analyzers may be specified for indexing and querying.
  351. The optional positionIncrementGap puts space between multiple fields of
  352. this type on the same document, with the purpose of preventing false phrase
  353. matching across fields.
  354. For more info on customizing your analyzer chain, please see
  355. http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters
  356. -->
  357. <!-- One can also specify an existing Analyzer class that has a
  358. default constructor via the class attribute on the analyzer element.
  359. Example:
  360. <fieldType name="text_greek" class="solr.TextField">
  361. <analyzer class="org.apache.lucene.analysis.el.GreekAnalyzer"/>
  362. </fieldType>
  363. -->
  364. <!-- A text field that only splits on whitespace for exact matching of words -->
  365. <fieldType name="text_ws" class="solr.TextField" positionIncrementGap="100">
  366. <analyzer>
  367. <tokenizer class="solr.WhitespaceTokenizerFactory"/>
  368. </analyzer>
  369. </fieldType>
  370. <!-- A text type for English text where stopwords and synonyms are managed using the REST API -->
  371. <fieldType name="managed_en" class="solr.TextField" positionIncrementGap="100">
  372. <analyzer>
  373. <tokenizer class="solr.StandardTokenizerFactory"/>
  374. <filter class="solr.ManagedStopFilterFactory" managed="english" />
  375. <filter class="solr.ManagedSynonymFilterFactory" managed="english" />
  376. </analyzer>
  377. </fieldType>
  378. <!-- A general text field that has reasonable, generic
  379. cross-language defaults: it tokenizes with StandardTokenizer,
  380. removes stop words from case-insensitive "stopwords.txt"
  381. (empty by default), and down cases. At query time only, it
  382. also applies synonyms. -->
  383. <fieldType name="text_general" class="solr.TextField" positionIncrementGap="100">
  384. <analyzer type="index">
  385. <tokenizer class="solr.StandardTokenizerFactory"/>
  386. <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" />
  387. <!-- in this example, we will only use synonyms at query time
  388. <filter class="solr.SynonymFilterFactory" synonyms="index_synonyms.txt" ignoreCase="true" expand="false"/>
  389. -->
  390. <filter class="solr.LowerCaseFilterFactory"/>
  391. </analyzer>
  392. <analyzer type="query">
  393. <tokenizer class="solr.StandardTokenizerFactory"/>
  394. <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" />
  395. <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
  396. <filter class="solr.LowerCaseFilterFactory"/>
  397. </analyzer>
  398. </fieldType>
  399. <!-- A text field with defaults appropriate for English: it
  400. tokenizes with StandardTokenizer, removes English stop words
  401. (lang/stopwords_en.txt), down cases, protects words from protwords.txt, and
  402. finally applies Porter's stemming. The query time analyzer
  403. also applies synonyms from synonyms.txt. -->
  404. <fieldType name="text_en" class="solr.TextField" positionIncrementGap="100">
  405. <analyzer type="index">
  406. <tokenizer class="solr.StandardTokenizerFactory"/>
  407. <!-- in this example, we will only use synonyms at query time
  408. <filter class="solr.SynonymFilterFactory" synonyms="index_synonyms.txt" ignoreCase="true" expand="false"/>
  409. -->
  410. <!-- Case insensitive stop word removal.
  411. -->
  412. <filter class="solr.StopFilterFactory"
  413. ignoreCase="true"
  414. words="lang/stopwords_en.txt"
  415. />
  416. <filter class="solr.LowerCaseFilterFactory"/>
  417. <filter class="solr.EnglishPossessiveFilterFactory"/>
  418. <filter class="solr.KeywordMarkerFilterFactory" protected="protwords.txt"/>
  419. <!-- Optionally you may want to use this less aggressive stemmer instead of PorterStemFilterFactory:
  420. <filter class="solr.EnglishMinimalStemFilterFactory"/>
  421. -->
  422. <filter class="solr.PorterStemFilterFactory"/>
  423. </analyzer>
  424. <analyzer type="query">
  425. <tokenizer class="solr.StandardTokenizerFactory"/>
  426. <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
  427. <filter class="solr.StopFilterFactory"
  428. ignoreCase="true"
  429. words="lang/stopwords_en.txt"
  430. />
  431. <filter class="solr.LowerCaseFilterFactory"/>
  432. <filter class="solr.EnglishPossessiveFilterFactory"/>
  433. <filter class="solr.KeywordMarkerFilterFactory" protected="protwords.txt"/>
  434. <!-- Optionally you may want to use this less aggressive stemmer instead of PorterStemFilterFactory:
  435. <filter class="solr.EnglishMinimalStemFilterFactory"/>
  436. -->
  437. <filter class="solr.PorterStemFilterFactory"/>
  438. </analyzer>
  439. </fieldType>
  440. <!-- A text field with defaults appropriate for English, plus
  441. aggressive word-splitting and autophrase features enabled.
  442. This field is just like text_en, except it adds
  443. WordDelimiterFilter to enable splitting and matching of
  444. words on case-change, alpha numeric boundaries, and
  445. non-alphanumeric chars. This means certain compound word
  446. cases will work, for example query "wi fi" will match
  447. document "WiFi" or "wi-fi".
  448. -->
  449. <fieldType name="text_en_splitting" class="solr.TextField" positionIncrementGap="100" autoGeneratePhraseQueries="true">
  450. <analyzer type="index">
  451. <tokenizer class="solr.WhitespaceTokenizerFactory"/>
  452. <!-- in this example, we will only use synonyms at query time
  453. <filter class="solr.SynonymFilterFactory" synonyms="index_synonyms.txt" ignoreCase="true" expand="false"/>
  454. -->
  455. <!-- Case insensitive stop word removal.
  456. -->
  457. <filter class="solr.StopFilterFactory"
  458. ignoreCase="true"
  459. words="lang/stopwords_en.txt"
  460. />
  461. <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0" splitOnCaseChange="1"/>
  462. <filter class="solr.LowerCaseFilterFactory"/>
  463. <filter class="solr.KeywordMarkerFilterFactory" protected="protwords.txt"/>
  464. <filter class="solr.PorterStemFilterFactory"/>
  465. </analyzer>
  466. <analyzer type="query">
  467. <tokenizer class="solr.WhitespaceTokenizerFactory"/>
  468. <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
  469. <filter class="solr.StopFilterFactory"
  470. ignoreCase="true"
  471. words="lang/stopwords_en.txt"
  472. />
  473. <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="0" catenateNumbers="0" catenateAll="0" splitOnCaseChange="1"/>
  474. <filter class="solr.LowerCaseFilterFactory"/>
  475. <filter class="solr.KeywordMarkerFilterFactory" protected="protwords.txt"/>
  476. <filter class="solr.PorterStemFilterFactory"/>
  477. </analyzer>
  478. </fieldType>
  479. <!-- Less flexible matching, but less false matches. Probably not ideal for product names,
  480. but may be good for SKUs. Can insert dashes in the wrong place and still match. -->
  481. <fieldType name="text_en_splitting_tight" class="solr.TextField" positionIncrementGap="100" autoGeneratePhraseQueries="true">
  482. <analyzer>
  483. <tokenizer class="solr.WhitespaceTokenizerFactory"/>
  484. <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="false"/>
  485. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_en.txt"/>
  486. <filter class="solr.WordDelimiterFilterFactory" generateWordParts="0" generateNumberParts="0" catenateWords="1" catenateNumbers="1" catenateAll="0"/>
  487. <filter class="solr.LowerCaseFilterFactory"/>
  488. <filter class="solr.KeywordMarkerFilterFactory" protected="protwords.txt"/>
  489. <filter class="solr.EnglishMinimalStemFilterFactory"/>
  490. <!-- this filter can remove any duplicate tokens that appear at the same position - sometimes
  491. possible with WordDelimiterFilter in conjuncton with stemming. -->
  492. <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
  493. </analyzer>
  494. </fieldType>
  495. <!-- Just like text_general except it reverses the characters of
  496. each token, to enable more efficient leading wildcard queries. -->
  497. <fieldType name="text_general_rev" class="solr.TextField" positionIncrementGap="100">
  498. <analyzer type="index">
  499. <tokenizer class="solr.StandardTokenizerFactory"/>
  500. <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" />
  501. <filter class="solr.LowerCaseFilterFactory"/>
  502. <filter class="solr.ReversedWildcardFilterFactory" withOriginal="true"
  503. maxPosAsterisk="3" maxPosQuestion="2" maxFractionAsterisk="0.33"/>
  504. </analyzer>
  505. <analyzer type="query">
  506. <tokenizer class="solr.StandardTokenizerFactory"/>
  507. <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
  508. <filter class="solr.StopFilterFactory" ignoreCase="true" words="stopwords.txt" />
  509. <filter class="solr.LowerCaseFilterFactory"/>
  510. </analyzer>
  511. </fieldType>
  512. <!-- charFilter + WhitespaceTokenizer -->
  513. <!--
  514. <fieldType name="text_char_norm" class="solr.TextField" positionIncrementGap="100" >
  515. <analyzer>
  516. <charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
  517. <tokenizer class="solr.WhitespaceTokenizerFactory"/>
  518. </analyzer>
  519. </fieldType>
  520. -->
  521. <!-- This is an example of using the KeywordTokenizer along
  522. With various TokenFilterFactories to produce a sortable field
  523. that does not include some properties of the source text
  524. -->
  525. <fieldType name="alphaOnlySort" class="solr.TextField" sortMissingLast="true" omitNorms="true">
  526. <analyzer>
  527. <!-- KeywordTokenizer does no actual tokenizing, so the entire
  528. input string is preserved as a single token
  529. -->
  530. <tokenizer class="solr.KeywordTokenizerFactory"/>
  531. <!-- The LowerCase TokenFilter does what you expect, which can be
  532. when you want your sorting to be case insensitive
  533. -->
  534. <filter class="solr.LowerCaseFilterFactory" />
  535. <!-- The TrimFilter removes any leading or trailing whitespace -->
  536. <filter class="solr.TrimFilterFactory" />
  537. <!-- The PatternReplaceFilter gives you the flexibility to use
  538. Java Regular expression to replace any sequence of characters
  539. matching a pattern with an arbitrary replacement string,
  540. which may include back references to portions of the original
  541. string matched by the pattern.
  542. See the Java Regular Expression documentation for more
  543. information on pattern and replacement string syntax.
  544. http://docs.oracle.com/javase/7/docs/api/java/util/regex/package-summary.html
  545. -->
  546. <filter class="solr.PatternReplaceFilterFactory"
  547. pattern="([^a-z])" replacement="" replace="all"
  548. />
  549. </analyzer>
  550. </fieldType>
  551. <fieldType name="phonetic" stored="false" indexed="true" class="solr.TextField" >
  552. <analyzer>
  553. <tokenizer class="solr.StandardTokenizerFactory"/>
  554. <filter class="solr.DoubleMetaphoneFilterFactory" inject="false"/>
  555. </analyzer>
  556. </fieldType>
  557. <fieldType name="payloads" stored="false" indexed="true" class="solr.TextField" >
  558. <analyzer>
  559. <tokenizer class="solr.WhitespaceTokenizerFactory"/>
  560. <!--
  561. The DelimitedPayloadTokenFilter can put payloads on tokens... for example,
  562. a token of "foo|1.4" would be indexed as "foo" with a payload of 1.4f
  563. Attributes of the DelimitedPayloadTokenFilterFactory :
  564. "delimiter" - a one character delimiter. Default is | (pipe)
  565. "encoder" - how to encode the following value into a playload
  566. float -> org.apache.lucene.analysis.payloads.FloatEncoder,
  567. integer -> o.a.l.a.p.IntegerEncoder
  568. identity -> o.a.l.a.p.IdentityEncoder
  569. Fully Qualified class name implementing PayloadEncoder, Encoder must have a no arg constructor.
  570. -->
  571. <filter class="solr.DelimitedPayloadTokenFilterFactory" encoder="float"/>
  572. </analyzer>
  573. </fieldType>
  574. <!-- lowercases the entire field value, keeping it as a single token. -->
  575. <fieldType name="lowercase" class="solr.TextField" positionIncrementGap="100">
  576. <analyzer>
  577. <tokenizer class="solr.KeywordTokenizerFactory"/>
  578. <filter class="solr.LowerCaseFilterFactory" />
  579. </analyzer>
  580. </fieldType>
  581. <!--
  582. Example of using PathHierarchyTokenizerFactory at index time, so
  583. queries for paths match documents at that path, or in descendent paths
  584. -->
  585. <fieldType name="descendent_path" class="solr.TextField">
  586. <analyzer type="index">
  587. <tokenizer class="solr.PathHierarchyTokenizerFactory" delimiter="/" />
  588. </analyzer>
  589. <analyzer type="query">
  590. <tokenizer class="solr.KeywordTokenizerFactory" />
  591. </analyzer>
  592. </fieldType>
  593. <!--
  594. Example of using PathHierarchyTokenizerFactory at query time, so
  595. queries for paths match documents at that path, or in ancestor paths
  596. -->
  597. <fieldType name="ancestor_path" class="solr.TextField">
  598. <analyzer type="index">
  599. <tokenizer class="solr.KeywordTokenizerFactory" />
  600. </analyzer>
  601. <analyzer type="query">
  602. <tokenizer class="solr.PathHierarchyTokenizerFactory" delimiter="/" />
  603. </analyzer>
  604. </fieldType>
  605. <!-- since fields of this type are by default not stored or indexed,
  606. any data added to them will be ignored outright. -->
  607. <fieldType name="ignored" stored="false" indexed="false" multiValued="true" class="solr.StrField" />
  608. <!-- This point type indexes the coordinates as separate fields (subFields)
  609. If subFieldType is defined, it references a type, and a dynamic field
  610. definition is created matching *___<typename>. Alternately, if
  611. subFieldSuffix is defined, that is used to create the subFields.
  612. Example: if subFieldType="double", then the coordinates would be
  613. indexed in fields myloc_0___double,myloc_1___double.
  614. Example: if subFieldSuffix="_d" then the coordinates would be indexed
  615. in fields myloc_0_d,myloc_1_d
  616. The subFields are an implementation detail of the fieldType, and end
  617. users normally should not need to know about them.
  618. -->
  619. <fieldType name="point" class="solr.PointType" dimension="2" subFieldSuffix="_d"/>
  620. <!-- A specialized field for geospatial search. If indexed, this fieldType must not be multivalued. -->
  621. <fieldType name="location" class="solr.LatLonType" subFieldSuffix="_coordinate"/>
  622. <!-- An alternative geospatial field type new to Solr 4. It supports multiValued and polygon shapes.
  623. For more information about this and other Spatial fields new to Solr 4, see:
  624. http://wiki.apache.org/solr/SolrAdaptersForLuceneSpatial4
  625. -->
  626. <fieldType name="location_rpt" class="solr.SpatialRecursivePrefixTreeFieldType"
  627. geo="true" distErrPct="0.025" maxDistErr="0.001" distanceUnits="kilometers" />
  628. <!-- Spatial rectangle (bounding box) field. It supports most spatial predicates, and has
  629. special relevancy modes: score=overlapRatio|area|area2D (local-param to the query). DocValues is recommended for
  630. relevancy. -->
  631. <fieldType name="bbox" class="solr.BBoxField"
  632. geo="true" distanceUnits="kilometers" numberType="_bbox_coord" />
  633. <fieldType name="_bbox_coord" class="solr.TrieDoubleField" precisionStep="8" docValues="true" stored="false"/>
  634. <!-- Money/currency field type. See http://wiki.apache.org/solr/MoneyFieldType
  635. Parameters:
  636. defaultCurrency: Specifies the default currency if none specified. Defaults to "USD"
  637. precisionStep: Specifies the precisionStep for the TrieLong field used for the amount
  638. providerClass: Lets you plug in other exchange provider backend:
  639. solr.FileExchangeRateProvider is the default and takes one parameter:
  640. currencyConfig: name of an xml file holding exchange rates
  641. solr.OpenExchangeRatesOrgProvider uses rates from openexchangerates.org:
  642. ratesFileLocation: URL or path to rates JSON file (default latest.json on the web)
  643. refreshInterval: Number of minutes between each rates fetch (default: 1440, min: 60)
  644. -->
  645. <fieldType name="currency" class="solr.CurrencyField" precisionStep="8" defaultCurrency="USD" currencyConfig="currency.xml" />
  646. <!-- some examples for different languages (generally ordered by ISO code) -->
  647. <!-- Arabic -->
  648. <fieldType name="text_ar" class="solr.TextField" positionIncrementGap="100">
  649. <analyzer>
  650. <tokenizer class="solr.StandardTokenizerFactory"/>
  651. <!-- for any non-arabic -->
  652. <filter class="solr.LowerCaseFilterFactory"/>
  653. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_ar.txt" />
  654. <!-- normalizes ﻯ to ﻱ, etc -->
  655. <filter class="solr.ArabicNormalizationFilterFactory"/>
  656. <filter class="solr.ArabicStemFilterFactory"/>
  657. </analyzer>
  658. </fieldType>
  659. <!-- Bulgarian -->
  660. <fieldType name="text_bg" class="solr.TextField" positionIncrementGap="100">
  661. <analyzer>
  662. <tokenizer class="solr.StandardTokenizerFactory"/>
  663. <filter class="solr.LowerCaseFilterFactory"/>
  664. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_bg.txt" />
  665. <filter class="solr.BulgarianStemFilterFactory"/>
  666. </analyzer>
  667. </fieldType>
  668. <!-- Catalan -->
  669. <fieldType name="text_ca" class="solr.TextField" positionIncrementGap="100">
  670. <analyzer>
  671. <tokenizer class="solr.StandardTokenizerFactory"/>
  672. <!-- removes l', etc -->
  673. <filter class="solr.ElisionFilterFactory" ignoreCase="true" articles="lang/contractions_ca.txt"/>
  674. <filter class="solr.LowerCaseFilterFactory"/>
  675. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_ca.txt" />
  676. <filter class="solr.SnowballPorterFilterFactory" language="Catalan"/>
  677. </analyzer>
  678. </fieldType>
  679. <!-- CJK bigram (see text_ja for a Japanese configuration using morphological analysis) -->
  680. <fieldType name="text_cjk" class="solr.TextField" positionIncrementGap="100">
  681. <analyzer>
  682. <tokenizer class="solr.StandardTokenizerFactory"/>
  683. <!-- normalize width before bigram, as e.g. half-width dakuten combine -->
  684. <filter class="solr.CJKWidthFilterFactory"/>
  685. <!-- for any non-CJK -->
  686. <filter class="solr.LowerCaseFilterFactory"/>
  687. <filter class="solr.CJKBigramFilterFactory"/>
  688. </analyzer>
  689. </fieldType>
  690. <!-- Kurdish -->
  691. <fieldType name="text_ckb" class="solr.TextField" positionIncrementGap="100">
  692. <analyzer>
  693. <tokenizer class="solr.StandardTokenizerFactory"/>
  694. <filter class="solr.SoraniNormalizationFilterFactory"/>
  695. <!-- for any latin text -->
  696. <filter class="solr.LowerCaseFilterFactory"/>
  697. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_ckb.txt"/>
  698. <filter class="solr.SoraniStemFilterFactory"/>
  699. </analyzer>
  700. </fieldType>
  701. <!-- Czech -->
  702. <fieldType name="text_cz" class="solr.TextField" positionIncrementGap="100">
  703. <analyzer>
  704. <tokenizer class="solr.StandardTokenizerFactory"/>
  705. <filter class="solr.LowerCaseFilterFactory"/>
  706. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_cz.txt" />
  707. <filter class="solr.CzechStemFilterFactory"/>
  708. </analyzer>
  709. </fieldType>
  710. <!-- Danish -->
  711. <fieldType name="text_da" class="solr.TextField" positionIncrementGap="100">
  712. <analyzer>
  713. <tokenizer class="solr.StandardTokenizerFactory"/>
  714. <filter class="solr.LowerCaseFilterFactory"/>
  715. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_da.txt" format="snowball" />
  716. <filter class="solr.SnowballPorterFilterFactory" language="Danish"/>
  717. </analyzer>
  718. </fieldType>
  719. <!-- German -->
  720. <fieldType name="text_de" class="solr.TextField" positionIncrementGap="100">
  721. <analyzer>
  722. <tokenizer class="solr.StandardTokenizerFactory"/>
  723. <filter class="solr.LowerCaseFilterFactory"/>
  724. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_de.txt" format="snowball" />
  725. <filter class="solr.GermanNormalizationFilterFactory"/>
  726. <filter class="solr.GermanLightStemFilterFactory"/>
  727. <!-- less aggressive: <filter class="solr.GermanMinimalStemFilterFactory"/> -->
  728. <!-- more aggressive: <filter class="solr.SnowballPorterFilterFactory" language="German2"/> -->
  729. </analyzer>
  730. </fieldType>
  731. <!-- Greek -->
  732. <fieldType name="text_el" class="solr.TextField" positionIncrementGap="100">
  733. <analyzer>
  734. <tokenizer class="solr.StandardTokenizerFactory"/>
  735. <!-- greek specific lowercase for sigma -->
  736. <filter class="solr.GreekLowerCaseFilterFactory"/>
  737. <filter class="solr.StopFilterFactory" ignoreCase="false" words="lang/stopwords_el.txt" />
  738. <filter class="solr.GreekStemFilterFactory"/>
  739. </analyzer>
  740. </fieldType>
  741. <!-- Spanish -->
  742. <fieldType name="text_es" class="solr.TextField" positionIncrementGap="100">
  743. <analyzer>
  744. <tokenizer class="solr.StandardTokenizerFactory"/>
  745. <filter class="solr.LowerCaseFilterFactory"/>
  746. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_es.txt" format="snowball" />
  747. <filter class="solr.SpanishLightStemFilterFactory"/>
  748. <!-- more aggressive: <filter class="solr.SnowballPorterFilterFactory" language="Spanish"/> -->
  749. </analyzer>
  750. </fieldType>
  751. <!-- Basque -->
  752. <fieldType name="text_eu" class="solr.TextField" positionIncrementGap="100">
  753. <analyzer>
  754. <tokenizer class="solr.StandardTokenizerFactory"/>
  755. <filter class="solr.LowerCaseFilterFactory"/>
  756. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_eu.txt" />
  757. <filter class="solr.SnowballPorterFilterFactory" language="Basque"/>
  758. </analyzer>
  759. </fieldType>
  760. <!-- Persian -->
  761. <fieldType name="text_fa" class="solr.TextField" positionIncrementGap="100">
  762. <analyzer>
  763. <!-- for ZWNJ -->
  764. <charFilter class="solr.PersianCharFilterFactory"/>
  765. <tokenizer class="solr.StandardTokenizerFactory"/>
  766. <filter class="solr.LowerCaseFilterFactory"/>
  767. <filter class="solr.ArabicNormalizationFilterFactory"/>
  768. <filter class="solr.PersianNormalizationFilterFactory"/>
  769. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_fa.txt" />
  770. </analyzer>
  771. </fieldType>
  772. <!-- Finnish -->
  773. <fieldType name="text_fi" class="solr.TextField" positionIncrementGap="100">
  774. <analyzer>
  775. <tokenizer class="solr.StandardTokenizerFactory"/>
  776. <filter class="solr.LowerCaseFilterFactory"/>
  777. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_fi.txt" format="snowball" />
  778. <filter class="solr.SnowballPorterFilterFactory" language="Finnish"/>
  779. <!-- less aggressive: <filter class="solr.FinnishLightStemFilterFactory"/> -->
  780. </analyzer>
  781. </fieldType>
  782. <!-- French -->
  783. <fieldType name="text_fr" class="solr.TextField" positionIncrementGap="100">
  784. <analyzer>
  785. <tokenizer class="solr.StandardTokenizerFactory"/>
  786. <!-- removes l', etc -->
  787. <filter class="solr.ElisionFilterFactory" ignoreCase="true" articles="lang/contractions_fr.txt"/>
  788. <filter class="solr.LowerCaseFilterFactory"/>
  789. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_fr.txt" format="snowball" />
  790. <filter class="solr.FrenchLightStemFilterFactory"/>
  791. <!-- less aggressive: <filter class="solr.FrenchMinimalStemFilterFactory"/> -->
  792. <!-- more aggressive: <filter class="solr.SnowballPorterFilterFactory" language="French"/> -->
  793. </analyzer>
  794. </fieldType>
  795. <!-- Irish -->
  796. <fieldType name="text_ga" class="solr.TextField" positionIncrementGap="100">
  797. <analyzer>
  798. <tokenizer class="solr.StandardTokenizerFactory"/>
  799. <!-- removes d', etc -->
  800. <filter class="solr.ElisionFilterFactory" ignoreCase="true" articles="lang/contractions_ga.txt"/>
  801. <!-- removes n-, etc. position increments is intentionally false! -->
  802. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/hyphenations_ga.txt"/>
  803. <filter class="solr.IrishLowerCaseFilterFactory"/>
  804. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_ga.txt"/>
  805. <filter class="solr.SnowballPorterFilterFactory" language="Irish"/>
  806. </analyzer>
  807. </fieldType>
  808. <!-- Galician -->
  809. <fieldType name="text_gl" class="solr.TextField" positionIncrementGap="100">
  810. <analyzer>
  811. <tokenizer class="solr.StandardTokenizerFactory"/>
  812. <filter class="solr.LowerCaseFilterFactory"/>
  813. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_gl.txt" />
  814. <filter class="solr.GalicianStemFilterFactory"/>
  815. <!-- less aggressive: <filter class="solr.GalicianMinimalStemFilterFactory"/> -->
  816. </analyzer>
  817. </fieldType>
  818. <!-- Hindi -->
  819. <fieldType name="text_hi" class="solr.TextField" positionIncrementGap="100">
  820. <analyzer>
  821. <tokenizer class="solr.StandardTokenizerFactory"/>
  822. <filter class="solr.LowerCaseFilterFactory"/>
  823. <!-- normalizes unicode representation -->
  824. <filter class="solr.IndicNormalizationFilterFactory"/>
  825. <!-- normalizes variation in spelling -->
  826. <filter class="solr.HindiNormalizationFilterFactory"/>
  827. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_hi.txt" />
  828. <filter class="solr.HindiStemFilterFactory"/>
  829. </analyzer>
  830. </fieldType>
  831. <!-- Hungarian -->
  832. <fieldType name="text_hu" class="solr.TextField" positionIncrementGap="100">
  833. <analyzer>
  834. <tokenizer class="solr.StandardTokenizerFactory"/>
  835. <filter class="solr.LowerCaseFilterFactory"/>
  836. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_hu.txt" format="snowball" />
  837. <filter class="solr.SnowballPorterFilterFactory" language="Hungarian"/>
  838. <!-- less aggressive: <filter class="solr.HungarianLightStemFilterFactory"/> -->
  839. </analyzer>
  840. </fieldType>
  841. <!-- Armenian -->
  842. <fieldType name="text_hy" class="solr.TextField" positionIncrementGap="100">
  843. <analyzer>
  844. <tokenizer class="solr.StandardTokenizerFactory"/>
  845. <filter class="solr.LowerCaseFilterFactory"/>
  846. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_hy.txt" />
  847. <filter class="solr.SnowballPorterFilterFactory" language="Armenian"/>
  848. </analyzer>
  849. </fieldType>
  850. <!-- Indonesian -->
  851. <fieldType name="text_id" class="solr.TextField" positionIncrementGap="100">
  852. <analyzer>
  853. <tokenizer class="solr.StandardTokenizerFactory"/>
  854. <filter class="solr.LowerCaseFilterFactory"/>
  855. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_id.txt" />
  856. <!-- for a less aggressive approach (only inflectional suffixes), set stemDerivational to false -->
  857. <filter class="solr.IndonesianStemFilterFactory" stemDerivational="true"/>
  858. </analyzer>
  859. </fieldType>
  860. <!-- Italian -->
  861. <fieldType name="text_it" class="solr.TextField" positionIncrementGap="100">
  862. <analyzer>
  863. <tokenizer class="solr.StandardTokenizerFactory"/>
  864. <!-- removes l', etc -->
  865. <filter class="solr.ElisionFilterFactory" ignoreCase="true" articles="lang/contractions_it.txt"/>
  866. <filter class="solr.LowerCaseFilterFactory"/>
  867. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_it.txt" format="snowball" />
  868. <filter class="solr.ItalianLightStemFilterFactory"/>
  869. <!-- more aggressive: <filter class="solr.SnowballPorterFilterFactory" language="Italian"/> -->
  870. </analyzer>
  871. </fieldType>
  872. <!-- Japanese using morphological analysis (see text_cjk for a configuration using bigramming)
  873. NOTE: If you want to optimize search for precision, use default operator AND in your query
  874. parser config with <solrQueryParser defaultOperator="AND"/> further down in this file. Use
  875. OR if you would like to optimize for recall (default).
  876. -->
  877. <fieldType name="text_ja" class="solr.TextField" positionIncrementGap="100" autoGeneratePhraseQueries="false">
  878. <analyzer>
  879. <!-- Kuromoji Japanese morphological analyzer/tokenizer (JapaneseTokenizer)
  880. Kuromoji has a search mode (default) that does segmentation useful for search. A heuristic
  881. is used to segment compounds into its parts and the compound itself is kept as synonym.
  882. Valid values for attribute mode are:
  883. normal: regular segmentation
  884. search: segmentation useful for search with synonyms compounds (default)
  885. extended: same as search mode, but unigrams unknown words (experimental)
  886. For some applications it might be good to use search mode for indexing and normal mode for
  887. queries to reduce recall and prevent parts of compounds from being matched and highlighted.
  888. Use <analyzer type="index"> and <analyzer type="query"> for this and mode normal in query.
  889. Kuromoji also has a convenient user dictionary feature that allows overriding the statistical
  890. model with your own entries for segmentation, part-of-speech tags and readings without a need
  891. to specify weights. Notice that user dictionaries have not been subject to extensive testing.
  892. User dictionary attributes are:
  893. userDictionary: user dictionary filename
  894. userDictionaryEncoding: user dictionary encoding (default is UTF-8)
  895. See lang/userdict_ja.txt for a sample user dictionary file.
  896. Punctuation characters are discarded by default. Use discardPunctuation="false" to keep them.
  897. See http://wiki.apache.org/solr/JapaneseLanguageSupport for more on Japanese language support.
  898. -->
  899. <tokenizer class="solr.JapaneseTokenizerFactory" mode="search"/>
  900. <!--<tokenizer class="solr.JapaneseTokenizerFactory" mode="search" userDictionary="lang/userdict_ja.txt"/>-->
  901. <!-- Reduces inflected verbs and adjectives to their base/dictionary forms (辞書形) -->
  902. <filter class="solr.JapaneseBaseFormFilterFactory"/>
  903. <!-- Removes tokens with certain part-of-speech tags -->
  904. <filter class="solr.JapanesePartOfSpeechStopFilterFactory" tags="lang/stoptags_ja.txt" />
  905. <!-- Normalizes full-width romaji to half-width and half-width kana to full-width (Unicode NFKC subset) -->
  906. <filter class="solr.CJKWidthFilterFactory"/>
  907. <!-- Removes common tokens typically not useful for search, but have a negative effect on ranking -->
  908. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_ja.txt" />
  909. <!-- Normalizes common katakana spelling variations by removing any last long sound character (U+30FC) -->
  910. <filter class="solr.JapaneseKatakanaStemFilterFactory" minimumLength="4"/>
  911. <!-- Lower-cases romaji characters -->
  912. <filter class="solr.LowerCaseFilterFactory"/>
  913. </analyzer>
  914. </fieldType>
  915. <!-- Latvian -->
  916. <fieldType name="text_lv" class="solr.TextField" positionIncrementGap="100">
  917. <analyzer>
  918. <tokenizer class="solr.StandardTokenizerFactory"/>
  919. <filter class="solr.LowerCaseFilterFactory"/>
  920. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_lv.txt" />
  921. <filter class="solr.LatvianStemFilterFactory"/>
  922. </analyzer>
  923. </fieldType>
  924. <!-- Dutch -->
  925. <fieldType name="text_nl" class="solr.TextField" positionIncrementGap="100">
  926. <analyzer>
  927. <tokenizer class="solr.StandardTokenizerFactory"/>
  928. <filter class="solr.LowerCaseFilterFactory"/>
  929. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_nl.txt" format="snowball" />
  930. <filter class="solr.StemmerOverrideFilterFactory" dictionary="lang/stemdict_nl.txt" ignoreCase="false"/>
  931. <filter class="solr.SnowballPorterFilterFactory" language="Dutch"/>
  932. </analyzer>
  933. </fieldType>
  934. <!-- Norwegian -->
  935. <fieldType name="text_no" class="solr.TextField" positionIncrementGap="100">
  936. <analyzer>
  937. <tokenizer class="solr.StandardTokenizerFactory"/>
  938. <filter class="solr.LowerCaseFilterFactory"/>
  939. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_no.txt" format="snowball" />
  940. <filter class="solr.SnowballPorterFilterFactory" language="Norwegian"/>
  941. <!-- less aggressive: <filter class="solr.NorwegianLightStemFilterFactory" variant="nb"/> -->
  942. <!-- singular/plural: <filter class="solr.NorwegianMinimalStemFilterFactory" variant="nb"/> -->
  943. <!-- The "light" and "minimal" stemmers support variants: nb=Bokmål, nn=Nynorsk, no=Both -->
  944. </analyzer>
  945. </fieldType>
  946. <!-- Portuguese -->
  947. <fieldType name="text_pt" class="solr.TextField" positionIncrementGap="100">
  948. <analyzer>
  949. <tokenizer class="solr.StandardTokenizerFactory"/>
  950. <filter class="solr.LowerCaseFilterFactory"/>
  951. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_pt.txt" format="snowball" />
  952. <filter class="solr.PortugueseLightStemFilterFactory"/>
  953. <!-- less aggressive: <filter class="solr.PortugueseMinimalStemFilterFactory"/> -->
  954. <!-- more aggressive: <filter class="solr.SnowballPorterFilterFactory" language="Portuguese"/> -->
  955. <!-- most aggressive: <filter class="solr.PortugueseStemFilterFactory"/> -->
  956. </analyzer>
  957. </fieldType>
  958. <!-- Romanian -->
  959. <fieldType name="text_ro" class="solr.TextField" positionIncrementGap="100">
  960. <analyzer>
  961. <tokenizer class="solr.StandardTokenizerFactory"/>
  962. <filter class="solr.LowerCaseFilterFactory"/>
  963. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_ro.txt" />
  964. <filter class="solr.SnowballPorterFilterFactory" language="Romanian"/>
  965. </analyzer>
  966. </fieldType>
  967. <!-- Russian -->
  968. <fieldType name="text_ru" class="solr.TextField" positionIncrementGap="100">
  969. <analyzer>
  970. <tokenizer class="solr.StandardTokenizerFactory"/>
  971. <filter class="solr.LowerCaseFilterFactory"/>
  972. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_ru.txt" format="snowball" />
  973. <filter class="solr.SnowballPorterFilterFactory" language="Russian"/>
  974. <!-- less aggressive: <filter class="solr.RussianLightStemFilterFactory"/> -->
  975. </analyzer>
  976. </fieldType>
  977. <!-- Swedish -->
  978. <fieldType name="text_sv" class="solr.TextField" positionIncrementGap="100">
  979. <analyzer>
  980. <tokenizer class="solr.StandardTokenizerFactory"/>
  981. <filter class="solr.LowerCaseFilterFactory"/>
  982. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_sv.txt" format="snowball" />
  983. <filter class="solr.SnowballPorterFilterFactory" language="Swedish"/>
  984. <!-- less aggressive: <filter class="solr.SwedishLightStemFilterFactory"/> -->
  985. </analyzer>
  986. </fieldType>
  987. <!-- Thai -->
  988. <fieldType name="text_th" class="solr.TextField" positionIncrementGap="100">
  989. <analyzer>
  990. <tokenizer class="solr.ThaiTokenizerFactory"/>
  991. <filter class="solr.LowerCaseFilterFactory"/>
  992. <filter class="solr.StopFilterFactory" ignoreCase="true" words="lang/stopwords_th.txt" />
  993. </analyzer>
  994. </fieldType>
  995. <!-- Turkish -->
  996. <fieldType name="text_tr" class="solr.TextField" positionIncrementGap="100">
  997. <analyzer>
  998. <tokenizer class="solr.StandardTokenizerFactory"/>
  999. <filter class="solr.ApostropheFilterFactory"/>
  1000. <filter class="solr.TurkishLowerCaseFilterFactory"/>
  1001. <filter class="solr.StopFilterFactory" ignoreCase="false" words="lang/stopwords_tr.txt" />
  1002. <filter class="solr.SnowballPorterFilterFactory" language="Turkish"/>
  1003. </analyzer>
  1004. </fieldType>
  1005. <!-- Pre-analyzed field type, allows inserting arbitrary token streams and stored values. -->
  1006. <fieldType name="preanalyzed" class="solr.PreAnalyzedField">
  1007. <!-- PreAnalyzedField's builtin index analyzer just decodes the pre-analyzed token stream. -->
  1008. <analyzer type="query">
  1009. <tokenizer class="solr.WhitespaceTokenizerFactory"/>
  1010. </analyzer>
  1011. </fieldType>
  1012. <!-- Similarity is the scoring routine for each document vs. a query.
  1013. A custom Similarity or SimilarityFactory may be specified here, but
  1014. the default is fine for most applications.
  1015. For more info: http://wiki.apache.org/solr/SchemaXml#Similarity
  1016. -->
  1017. <!--
  1018. <similarity class="com.example.solr.CustomSimilarityFactory">
  1019. <str name="paramkey">param value</str>
  1020. </similarity>
  1021. -->
  1022. </schema>