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 ...
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 ...
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 ...
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 ...
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 ...
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 ...
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 ...