: using the TermVectorComponent for a special set of documents, I will need
: the Lucene Document IDs.[1]
        ...
: http://wiki.apache.org/solr/TermVectorComponent?highlight=(tv.docIds)

internal doc ids are generally not exposed to the end user and shouldn't 
be trusted 99% of the time ... the param you are refering to is a very 
expert level feature that most people should never need to use.

Instead you should be using the the q,sort,start and rows params to pick 
the documents you want to get term vectors...

  http://wiki.apache.org/solr/TermVectorComponentExampleOptions

: By the way: Are there any known bugs with using a Lucene-framework-based
: IndexSearcher on an index built by Solr? Maybe one can use Lucene to create
: the response and work on it, instead of using Solr, because - for
: application internal tasks - there is no need for a xml-response.

This is what SolrJ and embedded solr was created for.

  http://wiki.apache.org/solr/Solrj#EmbeddedSolrServer

-Hoss

Reply via email to