You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2009/10/23 17:18:12 UTC

[Solr Wiki] Update of "TermVectorComponent" by TemoChalasani

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "TermVectorComponent" page has been changed by TemoChalasani.
http://wiki.apache.org/solr/TermVectorComponent?action=diff&rev1=8&rev2=9

--------------------------------------------------

  The Term Vector Component (TVC) is a !SearchComponent designed to return information about documents that is stored when setting the termVector attribute on a field:
  {{{<field name="features" type="text" indexed="true" stored="true" multiValued="true" termVectors="true" termPositions="true" termOffsets="true"/>}}}
  
- For each term, the TVC can return, the term vector, the term frequency, inverse document frequency, position and offset information.  As with most components, there are a number of options that are outlined in the samples below.
+ For each document, the TVC can return, the term vector, the term frequency, inverse document frequency, position and offset information.  As with most components, there are a number of options that are outlined in the samples below.
  
  See [[https://issues.apache.org/jira/browse/SOLR-651|SOLR-651]] for more information.