Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The following page has been changed by JonathanWoods: http://wiki.apache.org/solr/SolrPlugins ------------------------------------------------------------------------------ === Tokenizer and TokenFilter === - In addition to specifing specific Analyzer classes, Solr can construct Analyzers on the fly for each field type using a [http://lucene.apache.org/java/docs/api/org/apache/lucene/analysis/Tokenizer.html Tokenizer] and any number of [http://lucene.apache.org/java/docs/api/org/apache/lucene/analysis/TokenFilter.html TokenFilters]. To take advantage of this functionality with any Tokenizers or !TokenFilters you may have (or may want to impliment) you'll need to provide a [http://lucene.apache.org/solr/docs/api/org/apache/solr/analysis/TokenizerFactory.html TokenizerFactory] and [http://lucene.apache.org/solr/docs/api/org/apache/solr/analysis/TokenFilterFactory.html TokenFilterFactory] which takes care of any initialization and configuration, and specify these Factories in your [wiki:SchemaXml schema.xml]... + In addition to specifing specific Analyzer classes, Solr can construct Analyzers on the fly for each field type using a [http://lucene.apache.org/java/docs/api/org/apache/lucene/analysis/Tokenizer.html Tokenizer] and any number of [http://lucene.apache.org/java/docs/api/org/apache/lucene/analysis/TokenFilter.html TokenFilters]. To take advantage of this functionality with any Tokenizers or !TokenFilters you may have (or may want to implement) you'll need to provide a [http://lucene.apache.org/solr/docs/api/org/apache/solr/analysis/TokenizerFactory.html TokenizerFactory] and [http://lucene.apache.org/solr/docs/api/org/apache/solr/analysis/TokenFilterFactory.html TokenFilterFactory] which takes care of any initialization and configuration, and specify these Factories in your [wiki:SchemaXml schema.xml]... {{{ <fieldtype name="text_zop" class="solr.TextField" positionIncrementGap="100"> @@ -130, +130 @@ === FieldType === - If you have very specialized data type needs, you can specify your own [http://lucence.apache.org/solr/docs/api/org/apache/solr/schema/FieldType.html FieldType] class for each <`fieldtype>` you declare in your [wiki:SchemaXml schema.xml], to control how the values for those fields are encoded in your index... + If you have very specialized data type needs, you can specify your own [http://lucene.apache.org/solr/docs/api/org/apache/solr/schema/FieldType.html FieldType] class for each <`fieldtype>` you declare in your [wiki:SchemaXml schema.xml], to control how the values for those fields are encoded in your index... {{{ <fieldtype name="wacko" class="my.package.CustomFieldType" /> @@ -140, +140 @@ === SolrCache === - The [http://lucene.apache.org/solr/docs/api/org/apache/solr/search/SolrCache.html SolrCache] API allows you to specify custom Cache implimentations for any of the [wiki:SolrCaching various caches] you might declare in your [wiki:SolrConfigXml solrconfig.xml]... + The [http://lucene.apache.org/solr/docs/api/org/apache/solr/search/SolrCache.html SolrCache] API allows you to specify custom Cache implementations for any of the [wiki:SolrCaching various caches] you might declare in your [wiki:SolrConfigXml solrconfig.xml]... {{{ <filterCache class="my.package.CustomCache" size="512" />
