source: gs3-extensions/solr/trunk/src/conf/schema.xml.in@ 29171

Last change on this file since 29171 was 29171, checked in by ak19, 10 years ago

Configuring with a less aggressive stemming filter for English so that a search involving mouse does not say that mous (without the e) occurred a total of 0 times.

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