: That link indeed indicates, that when reading the index with Solr, it is : possible but you need to make the correct mapping of the analyzers (ie, : if field X is analyzed with analyzer Y, you need to map this in your : solr config) : : So, it is possible if you can find all fields and configure the correct analyzers
correct .... Solr will only deal with fields listed in your schema, and will attempt to index/query those fields using the analyzers and field types specified in the schema ... if you build a simple lucene index using just hte StandardAnalyzer, it's really easy to make a schema.xml to search this form Solr ... if you do more complex things using NuberTools and DateTools things get trickier. (if you poke arround you'll find some examples of people using Solr to search indexes created by nutch) -Hoss