Re: Percolate feature?

2013-08-10 Thread Mark
Our schema is pretty basic.. nothing fancy going on here On Aug 10, 2013, at 3:40 PM, "Jack Krupansky" wrote: > Now we're getting somewher

Re: defType

2013-08-10 Thread Koji Sekiguchi
See line 33 to 50 at http://svn.apache.org/viewvc/lucene/dev/trunk/solr/core/src/java/org/apache/solr/search/QParserPlugin.java?view=markup koji -- http://soleami.com/blog/automatically-acquiring-synonym-knowledge-from-wikipedia.html (13/08/11 8:05), William Bell wrote: Can you list them out?

Re: defType

2013-08-10 Thread Erik Hatcher
See http://slideshare.net/erikhatcher/solr-query-parsing slides 4 and 5 Plus whatever's been added since then. Erik On Aug 10, 2013, at 19:05, William Bell wrote: > Can you list them out? > > Thanks. > > raw > lucene > dismax > edismax > field > > > > > On Sat, Aug 10, 2013 at 4:45

Re: defType

2013-08-10 Thread William Bell
Can you list them out? Thanks. raw lucene dismax edismax field On Sat, Aug 10, 2013 at 4:45 PM, Jack Krupansky wrote: > The full list is in my book. What did you need in particular? > > (Actually, I forgot to add "maxscore" to my list.) > > -- Jack Krupansky > > -Original Message- Fr

Re: defType

2013-08-10 Thread Jack Krupansky
The full list is in my book. What did you need in particular? (Actually, I forgot to add "maxscore" to my list.) -- Jack Krupansky -Original Message- From: William Bell Sent: Saturday, August 10, 2013 6:30 PM To: solr-user@lucene.apache.org Subject: defType What are the possible

Re: Percolate feature?

2013-08-10 Thread Jack Krupansky
Now we're getting somewhere! To (over-simplify), you simply want to know if a given "listing" would match a high-value pattern, either in a "clean" manner (obvious keywords) or in an "unclean" manner (e.g., fuzzy keyword matching, stemming, n-grams.) To a large this also depends on how rich a

defType

2013-08-10 Thread William Bell
What are the possible options for defType? lucene dismax edismax Others? -- Bill Bell billnb...@gmail.com cell 720-256-8076

Re: Percolate feature?

2013-08-10 Thread Mark
> So to reiteratve your examples from before, but change the "labels" a > bit and add some more converse examples (and ignore the "highlighting" > aspect for a moment... > > doc1 = "Sony" > doc2 = "Samsung Galaxy" > doc3 = "Sony Playstation" > > queryA = "Sony Experia" ... matches only do

Re: Could not load config for solrconfig.xml

2013-08-10 Thread shuargan
Do you remember what was your mistake? Im having the same issue I have this solr.xml conf under Catalina/localhost and is throwing the same error... HTTP Status 500 - {msg=SolrCore 'collection1' is not available due to init failure: Could not load config for solrconfig.xml,trace=org.apache

Configuring SpellCehckComponent

2013-08-10 Thread Kamaljeet Kaur
I am using apache-solr-3.5.0 Want to apply Spell check, partial search, phonetic search and autocomplete to my project database with solr. Started with first feature. They tell to do some changes in solrconfig.xml. i am not getting

Re: Spelling suggestions.

2013-08-10 Thread Kamaljeet Kaur
Actually I don't have much knowledge about the files and configuring something with solr. Using apache-solr 3.5.0 and requesting the following URL I got the result as shown in the attachment: http://localhost:8983/solr/spell?q=delll ultrashar&spellcheck=true&spellcheck.collate=true&spellcheck.bui

Re: Problem with UniqueKey When Using ContentStreamUpdateRequest

2013-08-10 Thread Jack Krupansky
There isn't any parameter for /update/extra named "attachmentid". You probably wanted to use the "literal.*" parameter to set a field to a literal value, such as: litereral.attachmentid=fileid_123 -- Jack Krupansky -Original Message- From: adammyatt Sent: Friday, August 09, 2013

Problem with UniqueKey When Using ContentStreamUpdateRequest

2013-08-10 Thread adammyatt
Using Solr 4.3.1 with SolrJ... In my schema xml I have defined : and farther down attachmentid Then following all the examples of ContentStreamUpdateRequest online I am trying to index a file using : File file = new File("c:\\solr\\indexme.pdf"); ContentStreamUpdateRequest csur = new Con

Re: Do docValues influence range faceting speed in solr?

2013-08-10 Thread Mikhail Khludnev
Hello, I don't think so. I looked at sources - range and query facets are backed on SolrIndexSearcher.numDocs(Query, DocSet). On Fri, Aug 9, 2013 at 2:05 PM, omu_negru wrote: > Hello, > From my understanding doc.values work like a persistent field-cache, which > is awesome for when you hav