schema « index « Java Lucene Q&A

Home
Java Lucene Q&A
1.Database
2.Development
3.document
4.Field
5.index
6.lucene
7.lucene.net
8.nutch
9.query
10.solr
11.Tools
Java Lucene Q&A » index » schema 

1. Change schema in Solr without reindex    stackoverflow.com

First of all, sorry about my english: In Solr, if we have a field in the schema with stored="true" and we change the analyzer associated with that field, are any posibility of ...

2. How would one use one schema to index two set of fields in solr?    stackoverflow.com

How would one use one schema to index two set of fields in solr & still be able to use dismax handler. I would like to do this so that ...

3. Why did they create the concept of "schema.xml" in Solr?    stackoverflow.com

Lucene does searching and indexing, all by taking "coding"... Why doesn't Solr do the same ? Why do we need a schema.xml ? Whats its importance ? Is there a way ...

4. Issue about Schema.xml uniqueKey field    stackoverflow.com

I hava configured the schema.xml with different field like

<fields>
      <field name="id" type="int" indexed="true" stored="true" required="true" /> 
  </fields>
      <uniqueKey>id</uniqueKey>
when i ...

5. Search over multicore index without same schema solr    stackoverflow.com

I use Solr, and i would like to know if i can search over multiple index using multicore. I know there is "Distributed Search" but i think it's only for index ...

6. Can i change Schema.xml file structure after starting the index in solr    stackoverflow.com

HI All, I have configured solr and right now i am using two filed in Schema.xml -file_id -content And after i start the indexing i have already index around 1000 of record now i want ...

7. Solr lucene schema.xml multi-valued entries, please help    stackoverflow.com

Essentially I am trying to link a user type to a price for a product. So a product is a document in the index, and each document has multiple prices, one for ...

8. change schema from indexed field to stored field without re-index in Solr    stackoverflow.com

We want to change schema from indexed field to stored field, for example orig one : <field name="cat" type="string" indexed="true" stored="false"> new one: <field name="cat" type="string" indexed="false" stored="true"> The tool or commands to help ...

9. How do I filter/sort a sequenced document that belongs in multiple categories in Solr without grouping?    stackoverflow.com

I'm looking for some help and wisdom on how to properly design the schema for indexing documents for my situation. Basically I have products which can belong in multiple categories. Within ...

10. Indexing office formats with a custom field type schema    stackoverflow.com

We have the following Solr (3.4) schema for indexing html/text documents:

 <fields>

   <field name="text" type="text" indexed="true"
          stored="true" required="false" multiValued="false"
  ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.