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 tincu.gabr...@gmail.com wrote: Hello, From my understanding doc.values work like a persistent field-cache, which is

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 : field name=attachmentid type=string indexed=true stored=true required=true multiValued=false / and farther down uniqueKeyattachmentid/uniqueKey Then following all the examples of ContentStreamUpdateRequest online I am trying

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

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

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 https://cwiki.apache.org/confluence/display/solr/Spell+Checking tell to do some changes in solrconfig.xml. i am not getting

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 ?xml version=1.0 encoding=utf-8? Context docBase=/usr/share/tomcat6/webapps/solr.war debug=0 privileged=true crossContext=true Environment name=solr/home type=java.lang.String

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 doc1 queryB = Sony

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

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: 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 j...@basetechnology.comwrote: 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

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 billnb...@gmail.com wrote: Can you list them out? Thanks. raw lucene dismax edismax field On Sat, Aug 10, 2013 at

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: Percolate feature?

2013-08-10 Thread Mark
Our schema is pretty basic.. nothing fancy going on here fieldType name=text class=solr.TextField omitNorms=false analyzer type=index tokenizer class=solr.WhitespaceTokenizerFactory/ filter class=solr.LowerCaseFilterFactory/ filter