Re: Combining several fields for facets.

2014-09-28 Thread SolrUser1543
I have many values in each field, I cant use facet query... (I dont know all the values) -- View this message in context: http://lucene.472066.n3.nabble.com/Combining-several-fields-for-facets-tp4160679p4161539.html Sent from the Solr - User mailing list archive at Nabble.com.

multiple terms order in query - eDismax

2014-09-28 Thread Tomer Levi
Hi, We have an index with 3 documents, each document contains a single field let's call it 'text' (except the id) as below: * Doc1 o text:home garden sky sea wolf * Doc2 o text:home wolf sea garden sky * Doc3 o text:wolf sea home garden sky When executing the q

Re: demo app explaining solr features

2014-09-28 Thread Jack Krupansky
And you can also check out the tutorials in any of the Solr books, including my Solr Deep Dive e-book: http://www.lulu.com/us/en/shop/jack-krupansky/solr-4x-deep-dive-early-access-release-7/ebook/product-21203548.html -- Jack Krupansky -Original Message- From: Mikhail Khludnev Sent:

Re: multiple terms order in query - eDismax

2014-09-28 Thread Jack Krupansky
pf and ps merely control boosting of documents, not selection of documents. mm controls selection of documents. So, hopefully at least doc3 is returned before doc2. -- Jack Krupansky From: Tomer Levi Sent: Sunday, September 28, 2014 5:39 AM To: solr-user@lucene.apache.org Subject: multiple te

Re: demo app explaining solr features

2014-09-28 Thread Alexandre Rafalovitch
There is NOTHING that will explain all features of Solr. Solr is too deep. It starts from "Hello World" and gets into PhD level computational linguistics as well as specialist-level distributed systems. However, as mentioned in the other emails, there are resources, both online and paid that can g

Re: demo app explaining solr features

2014-09-28 Thread Aman Tandon
Hi Anurag, For the demo you can post xml to solr in example-docs folder I guess and then you can use the browse request handler http://localhost:8983/solr/browse I am not too sure about URL but this can help you to gave an idea about searching, faceting, geo spatial search,etc I wish this could

boosting words from specific list

2014-09-28 Thread Ali Nazemian
Dear all, Hi, I was wondering how can I implement solr boosting words from specific list of important words? I mean I want to have a list of important words and tell solr to score documents based on the weighted sum of these words. For example let word "school" has weight of 2 and word "president"

Re: How does KeywordRepeatFilterFactory help giving a higher score to an original term vs a stemmed term

2014-09-28 Thread Ahmet Arslan
Hi, How about coord factor? Does it kick in when stemmed and original tokens both match? On Friday, September 26, 2014 1:32 AM, Diego Fernandez wrote: The difference comes in the fact that when you query the same form it matches 2 tokens including the less common one. When you query a diff

Re: applicability of schema on document

2014-09-28 Thread Alexandre Rafalovitch
Anurag, Just answering your three emails on two emailing lists. You seem to want to jump into the middle of Solr and then dig your way both ways. So, your question here is a mix of very basic and unnecessarily complicated. Specifically, you seem to be missing a link between schema.xml and solrcon

Re: [ANN] Lucidworks Fusion 1.0.0

2014-09-28 Thread Aman Tandon
Hi, How we can see the demo for NLP? On Sep 24, 2014 4:43 PM, "Grant Ingersoll" wrote: > Hi Thomas, > > Thanks for the question, yes, I give a brief demo of it in action during > my talk and we will have demos at our booth. I will also give a demo > during the Webinar, which will be recorded.

JSP support not configured in cygwin with Apache Solr

2014-09-28 Thread PeterKerk
I'm starting Cygwin with Apache solr-4.3.1 like so: @echo off C: chdir C:\cygwin\bin rem bash --login -i bash -c "cd /cygdrive/c/solr-4.3.1/example/;java -Dsolr.solr.home="./example-DIH/solr/" -jar -Xms200m -Xmx1200m start.jar -OPTIONS=jsp" But when I go to htt

Re: JSP support not configured in cygwin with Apache Solr

2014-09-28 Thread Alexandre Rafalovitch
On 28 September 2014 21:06, PeterKerk wrote: > But when I go to http://localhost:8983/solr/db/admin/analysis.jsp > > I get a 500 error `Problem accessing /solr/db/admin/analysis.jsp. Reason: > JSP support not configured` > Where did you get that URL? Try just going to http://localhost:8983/solr/

Re: JSP support not configured in cygwin with Apache Solr

2014-09-28 Thread PeterKerk
Was an old bookmark..I did not notice the extra pages under core selectionfound it now , thanks! -- View this message in context: http://lucene.472066.n3.nabble.com/JSP-support-not-configured-in-cygwin-with-Apache-Solr-tp4161613p4161619.html Sent from the Solr - User mailing list archive at

Flexible search field analyser/tokenizer configuration

2014-09-28 Thread PeterKerk
I have a site which lists companies. I'm looking to improve my search, but I want to know which available analysers and tokenizers I should use for which scenario, and if it's at all possible. I want users to be able to search on the company title on for example a company called "The Royal Garden

Re: Flexible search field analyser/tokenizer configuration

2014-09-28 Thread Alexandre Rafalovitch
WordDelimiterFilterFactory is rather a specialized and capricious beast. Possibly not the most suitable for your needs (it's for things like "iPhone 6" == "iphone6"). Things you may want to look at: http://www.solr-start.com/javadoc/solr-lucene/org/apache/lucene/analysis/ngram/EdgeNGramFilterFacto

Re: Solr Boosting Unique Values

2014-09-28 Thread rulinma
ok. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Boosting-Unique-Values-tp4160507p4161627.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: multiple terms order in query - eDismax

2014-09-28 Thread Tomer Levi
Thanks Jack! Do you have any idea how can I select documents according to the appearance order of the terms? -Original Message- From: Jack Krupansky [mailto:j...@basetechnology.com] Sent: Sunday, September 28, 2014 1:27 PM To: solr-user@lucene.apache.org Subject: Re: multiple terms orde