Questions tagged [solr-schema]
77 questions
2
votes
1 answer
Returning single word from Solr Suggester
I am developing a web application, and am using Solr as search engine. I would like to add autocomplete functionality. To do this, I have added the Suggester component, and configured a separate field for it. This works ok.
The problem is that…

Knut
- 136
- 9
2
votes
2 answers
Solr - Can't search when term ends with "y"
This problem seems really ridiculous.
I always get 0 results when searching for entries that end with "y". I know they exist.
0 Results:
Barthy
Tony
Maxy
x Results:
Barth
Ton
Max
With any of the last three I get the desired results (Barthy B,…

Barthy
- 3,151
- 1
- 25
- 42
2
votes
2 answers
How can I integrate Solr5.1.0 with Nutch1.10
I replaced the Solr schema.xml with nutch schema.xml. But when I run Solr again,Solr log prints this error:
ERROR - 2015-06-09 09:54:30.279; [ ]
org.apache.solr.core.CoreContainer; Error creating core [mycore]:
Could not load conf for core…

liujieke
- 21
- 1
2
votes
1 answer
In Solr 4 - How do I include file names in the index?
I am building a search Engine with Solr 4.8.1 - in doing so, I am attempting to display the file names of each indexed document in my GUI search results.
I can successfully display any field that is in Solr's Schema.xml file (title, author, id,…

user3730104
- 87
- 1
- 6
2
votes
0 answers
How to return more fields on Solr 4.5.1 Suggester?
I am using Solr 4.5.1 to suggest movies for my system. What i need solr to return not only the move_title but also the movie_id that belongs to the movie. As an example; this is kind of what i need:
…

Omer Sonmez
- 1,168
- 2
- 20
- 31
1
vote
1 answer
"int" value changes after inserting in Solr
I have defined a solr schema as:
…

sariDon
- 7,782
- 2
- 16
- 27
1
vote
1 answer
Error when initializing Solr core: Error loading class 'solr.ICUCollationField'
Using Drupal, we've tried to import the configuration files from the solr_api_search module. When importing them and trying to initialize the core, I see the following error (Solr 7.7.2):
Could not load conf for core testcore: Can't load schema…

J. Doe
- 1,479
- 5
- 25
- 49
1
vote
1 answer
Indexing original tokens in solr
Let's say I have a field type as the following:

Barry
- 15
- 7
1
vote
0 answers
Term position of a query terms in solr results
I am trying to find the position of query terms in result documents.
For that I am using '/tvrh' RequestHandler with tv.positions=true.
However I am receiving positions for all the terms in a doc, but I only need the position of query terms.
I am…

atinjanki
- 483
- 3
- 13
1
vote
2 answers
Solr phrase search needs to match on partial word
Using Solr for searching docs in English and Korean languages, so far Korean language search is working fine. Need to extend English exact phrase to match with partial words too.
Solr query I used:
content: "He go"
is not matching with He goes, He…

Bishawjit Das
- 101
- 8
1
vote
0 answers
solr.KeywordTokenizerFactory does not work with wildcard and space
My schema.xml has the below field type:

pranay k
- 11
- 2
1
vote
0 answers
Updating deeply nested structures in Solr
I am still new to solr. I am trying to index a nested structure as below and having difficulty indexing with SolrJ 6.1.
schema.xml
id
…

Andrei Krasutski
- 4,913
- 1
- 29
- 35
1
vote
0 answers
indexing XML Solr Schemaless mode
I'm using Solr in schemaless mode, and I want to index some XML files, using the post command via shell.
I've configured in solrconfig.xml the ManagedSchemaDefinition and commented the ClassicIndexSchemaFactory.
The post command index successfully…

Francesco Marchitelli
- 137
- 1
- 11
1
vote
1 answer
Solr Exception: Unknown fieldType 'double' specified on field
My solr schema.xml is defined as the following:

icebox
- 95
- 1
- 11
1
vote
1 answer
How to filter Solr Autocomplete/Suggest?
I have implemented a Solr suggest handler to deal with autocomplete suggestions from my app. However, I need to be able to filter these results based on user privileges. Essentially, this could be ensuring that one of the returned fields matches a…

PizzaTheHut
- 637
- 2
- 6
- 20