Good Open Source Front End for Solr

2019-11-06 Thread Java Developer
Hi, What is the best open source front-end for Solr Thanks

Portable Solr

2019-11-03 Thread Java Developer
Hi, Like portable embedded web server (Spring Boot or Takes Or Rapid) Takes ( https://github.com/yegor256/takes) or Undertow (http://undertow.io/) or Rapidoid (https://www.rapidoid.org/) Do we have portable Solr server? Want to build an Web application with Solr with portability? The user needs

Re: Indexing word with plus sign

2017-05-24 Thread Fundera Developer
as an operator. Best, Erick On Tue, May 23, 2017 at 10:12 AM, Fundera Developer <funderadevelo...@outlook.com><mailto:funderadevelo...@outlook.com> wrote: I have also tried this option, by using a PatternReplaceFilterFactory, like this: but it gets processed AFTER th

Re: Indexing word with plus sign

2017-05-23 Thread Fundera Developer
e you'll have to be careful to keep the + sign from being interpreted as an operator. Best, Erick On Tue, May 23, 2017 at 10:12 AM, Fundera Developer <funderadevelo...@outlook.com><mailto:funderadevelo...@outlook.com> wrote: I have also tried this option, by using a PatternReplaceFilt

Re: Indexing word with plus sign

2017-05-23 Thread Fundera Developer
You need a regex which matches a '+' with non-blank chars before and after. It should not replace a '+' preceded by white space, that is important in Solr. This is not a perfect solution, but might improve matters for you. Cheers -- Rick On May 22, 2017 1:58:21 PM EDT, Fundera Developer

Re: Indexing word with plus sign

2017-05-22 Thread Fundera Developer
er tokenized you can replace it back. For example: Thanks, Zahid iqbal On Mon, May 22, 2017 at 12:57 AM, Fundera Developer < funderadevelo...@outlook.com<mailto:funderadevelo...@outlook.com>> wrote: Hi all, I am a bit stuck at a problem that I feel must be easy to solve. In Spa

Indexing word with plus sign

2017-05-21 Thread Fundera Developer
Hi all, I am a bit stuck at a problem that I feel must be easy to solve. In Spanish it is usual to find the term 'i+d'. We are working with Solr 5.5, and StandardTokenizer splits 'i' and 'd' and sometimes, as we have in the index documents both in Spanish and Catalan, and in Catalan it is

Get number of results in filtered query

2016-04-13 Thread Fundera Developer
Hi all, we are developing a search engine in which all the possible results have one or more countries associated. If, apart from writing the query, the user selects a country, we use a filterquery to restrict the results to those that match the query and are associated to that country.

Re: Problem building fuzzy suggestions

2016-04-03 Thread Fundera Developer
true However, to be honest, I still have no idea why this time it worked and the others did not. In order to learn for the next time, any clarifications would be highly appreciated. Thanks! El 03/04/2016 a las 12:10, Fundera Developer escribió: After correcting some stupid

StackOverflowError when building suggestions

2016-04-03 Thread Fundera Developer
Hi all, I have taken the example configuration in the reference guide (https://cwiki.apache.org/confluence/display/solr/Suggester) and adapted it to my needs, resulting in this configuration: mySuggester FuzzyLookupFactory

Re: Problem building fuzzy suggestions

2016-04-03 Thread Fundera Developer
e="lookupImpl">org.apache.solr.spelling.suggest.jaspell.JaspellLookupFactory spellchk 0.1 0.0 suggest true true However, still no fuzzy suggestions :-( Any ideas? Thanks in advance!! El 03/04/2016 a las 11:47, Fundera Developer escribió: Following on this, I have been able t

Re: Problem building fuzzy suggestions

2016-04-03 Thread Fundera Developer
the accuracy parameter as low as 0.5 (and reindex, of course). Am I doing something wrong? Is there any better alternative to getting fuzzy suggestions? Thanks in advance!! El 02/04/2016 a las 20:27, Fundera Developer escribió: Hi all, At present I am providing suggestions in my

Problem building fuzzy suggestions

2016-04-02 Thread Fundera Developer
Hi all, At present I am providing suggestions in my app with this configuration in my solrconfig.xml: mySuggester WFSTLookupFactory spellchk 0.005 true true true

Re: Solr Autosuggest - Strange issue with leading numbers in query

2014-02-17 Thread Developer
Hi Erik, Thanks a lot for your reply. I expect it to return zero suggestions since the suggested keyword doesnt actually start with numbers. Expected results Searching for ga - returns galaxy Searching for gal - returns galaxy Searching for 12321312321312ga - should not return any suggestion

Is it possible to load new elevate.xml on the fly?

2014-02-17 Thread Developer
Hi, I am trying to figure out a way to use multiple elevate.xml using the query parameters on the fly. We have a scenario where we need to elevate documents based on authentication (same core) without creating a new search handler. * For authenticated customers * elevate documents based on

Escape \\n from getting highlighted - highlighter component

2014-02-17 Thread Developer
Hi, When searching for a text like 'talk n text' the highlighter component also adds the em tags to the special characters like \n. Is there a way to avoid highlighting the special characters? \\r\\n Family Messaging is getting replaced as \\r\\emn/em Family Messaging -- View this

Solr Autosuggest - Strange issue with leading numbers in query

2014-02-11 Thread Developer
I have a strange issue with Autosuggest. Whenever I query for a keyword along with numbers (leading) it returns the suggestion corresponding to the alphabets (ignoring the numbers). I was under assumption that it will return an empty result back. I am not sure what I am doing wrong. Can someone

Is there a way to ignore elevate.xml through SOLR parameters?

2014-01-29 Thread Developer
I am currently using elevate.xml to elevate few documents based on some search keywords. We have a requirement to ignore the elevate.xml and boost the documents based on original scoring factors when a user is an authenticated user. Is it something that can be done by using SOLR parameters?

Limit the number of words in Auto complete using RE - not working

2014-01-27 Thread Developer
Hi, I have a fieldtype as below configured to index the autocomplete phrase. Everything worked fine except for the fact that some of the phrases were too long so we had to limit the maximum number of words in a phrase hence I added a regular expression which will remove all other words except the

SOLR suggester component - Get suggestion dump

2014-01-07 Thread Developer
I am currently using the suggester component for auto suggest. I need to blacklist few of the suggestions generated during indexing hence I am trying to get entire list of suggestions generated during indexing, is there a way to get that dump? -- View this message in context:

SOLR Security - Displaying endpoints to public

2014-01-06 Thread Developer
Hi, We are currently showing the SOLR endpoints to the public when using our application (public users would be able to view the SOLR endpoints (/select) and the query in debugging console). I am trying to figure out if there is any security threat in terms of displaying the endpoints directly

question regarding dismax query results

2013-12-31 Thread Vulcanoid Developer
Hi, I have a solr schema which has fields related to Indian legal judgments and want to provide a search engine on top of them. I came across a problem which I thought I would take the group's advise on. For discussion sake let us assume there are only two fields assessee and itat_order which

Re: simple tokenizer question

2013-12-08 Thread Vulcanoid Developer
, at 06:15 PM, Vulcanoid Developer wrote: Hi, I am new to solr and I guess this is a basic tokenizer question so please bear with me. I am trying to use SOLR to index a few (Indian) legal judgments in text form and search against them. One of the key points with these documents

simple tokenizer question

2013-12-07 Thread Vulcanoid Developer
Hi, I am new to solr and I guess this is a basic tokenizer question so please bear with me. I am trying to use SOLR to index a few (Indian) legal judgments in text form and search against them. One of the key points with these documents is that the sections/provisions of law usually have

Re: Suggester - how to return exact match?

2013-11-21 Thread Developer
Might not be a perfect solution but you can use edgengram filter and copy all your field data to that field and use it for suggestion. fieldType name=text_autocomplete class=solr.TextField positionIncrementGap=100 analyzer type=index tokenizer class=solr.WhitespaceTokenizerFactory/

Re: Suggester - how to return exact match?

2013-11-20 Thread Developer
May be there is a way to do this but it doesn't make sense to return the same search query as a suggestion (Search query is not a suggestion as it might or might not be present in the index). AFAIK you can use various look up algorithm to get the suggestion list and they lookup the terms based on

How to index X™ as #8482; (HTML decimal entity)

2013-11-19 Thread Developer
I have a data coming in to SOLR as below. field name=displayNameX™ - Black/field I need to store the HTML Entity (decimal) equivalent value (i.e. #8482;) in SOLR rather than storing the original value. Is there a way to do this? -- View this message in context:

How to escape special characters from SOLR response header

2013-11-13 Thread Developer
I am trying to escape special characters from SOLR response header (to prevent cross site scripting). I couldn't find any method in SolrQueryResponse to get just the SOLR response header. Can someone let me know if there is a way to modify the SOLR response header? -- View this message in

Re: Need idea to standardize keywords - ring tone vs ringtone

2013-10-30 Thread Developer
I tried using synonyms but it doesn't actually change the stored text rather just the indexed value. I need a way to change the raw value stored in SOLR. May be I should use a custom update processor to standardize the data. -- View this message in context:

Re: Need idea to standardize keywords - ring tone vs ringtone

2013-10-28 Thread Developer
Thanks for your response Eric. Sorry for the confusion. I currently display both 'ring tone' as well as 'ringtone' when the user types in 'r' but I am trying to figure out a way to display just 'ringtone' hence I added 'ring tone' to stopwords list so that it doesn't get indexed. I have the list

Need idea to standardize keywords - ring tone vs ringtone

2013-10-25 Thread Developer
I am currently using a separate core for indexing the autosuggest keywords. Everything works fine except for one issue as below. In index I have 2 entries ring tone ringtone When users type in 'r' I display both ring tone and ringtone in auto suggest list. I am trying to figure out a way to

Is there a way to standardize the stored values (like using synonyms for indexed values)?

2013-10-25 Thread Developer
I am trying to figure out a way to standardize the stored values using a file similar to synonyms.txt file. For ex: If I have 3 entries as below name: apple banana name: appleBanana name: applebaNana Mapping apple banana, appleBanana, applebaNana= applebanana I want to just have one entry

Re: Exact Match Results

2013-10-21 Thread Developer
You need to provide us with the fieldtype information.. If you just want to match the phrase entered by user, you can use KeywordTokenizerFactory.. Reference: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters Creates org.apache.lucene.analysis.core.KeywordTokenizer. Treats the entire

Re: Exact Match Results

2013-10-21 Thread Developer
For exact phrase match you can wrap the query inside quotes but this will perform the exact match and it wont match other results. The below query will match only : Okkadu telugu movie stills http://localhost:8983/solr/core1/select?q=%22okkadu%20telugu%20movie%20stills%22 Since you are using

Re: Fuzzy Logic Implementation

2013-10-15 Thread Developer
Use the spell check component with collation.. Example: http://localhost:8983/solr/spell?q=delll ultrasharspellcheck=truespellcheck.extendedResults=truespellcheck.collate=true http://wiki.apache.org/solr/SpellCheckComponent -- View this message in context:

Re: solrnet sample

2013-10-14 Thread Developer
You can get most of the faceting information using the below link, SOLRNet faceting info: https://github.com/mausch/SolrNet/blob/master/Documentation/Facets.md SOLR faceting info: http://wiki.apache.org/solr/SolrFacetingOverview -- View this message in context:

My posts are NOT getting accepted by the mailing list.

2013-10-14 Thread Developer
For some reason, my posts are not getting accepted my mailing list even though I am a subscriber for more than 3 years now. Did anything change in recent past? Do I need to subscribe to this list again? -- View this message in context:

Re: My posts are NOT getting accepted by the mailing list.

2013-10-14 Thread Developer
Thanks Shawn. Actually some of my posts are still pending while others were successfully accepted by mailing list. I never used HTML formatting.. but hopefully I am not listed as a spammer -- View this message in context:

Re: Replace NULL with 0 while Indexing

2013-10-14 Thread Developer
You can also use SELECT ISNULL(myColumn, 0 ) FROM myTable Reference: http://www.w3schools.com/sql/sql_isnull.asp -- View this message in context: http://lucene.472066.n3.nabble.com/Replace-NULL-with-0-while-Indexing-tp4095059p4095550.html Sent from the Solr - User mailing list archive at