On Wed, Jul 25, 2012 at 8:58 AM, spredd1208 [via Lucene] <
ml-node+s472066n3997251...@n3.nabble.com> wrote:
> So I am familiar with SOLR. I have built fairly extensive solr indexes
> already. What I am trying to do now
> is build very large indexes and then move them over to a
So I am familiar with SOLR. I have built fairly extensive solr indexes
already. What I am trying to do now
is build very large indexes and then move them over to a sharded server
environment that will allow clients to query them.
These indexes will be built once and will not be updated or need de
So on the lucene side I am only using:
http://lucene.apache.org/core/3_6_0/api/core/org/apache/lucene/document/Field.html#Field(java.lang.String,
java.lang.String, org.apache.lucene.document.Field.Store,
org.apache.lucene.document.Field.Index)
and
http://lucene.apache.org/core/3_6_0/api/core/org/
Is there a best practice to copy a lucene index which is built using the core
API of Lucene 3.6 into a
solr server (also 3.6) and then have it work?
I cannot find a mapping anywhere of lucene fields to solr fields and what
the corresponding schema.xml would look like.
This seems like something th