Re: Best use of wildcard searches

2007-08-09 Thread Matthew Runo
Sure thing! Heres 1, and 2. 1 - just a space. 2 - a \ . ++ | Matthew Runo | Zappos Development | [EMAIL PROTECTED] | 702-943-7833 ++ On Aug 9, 2007, at 1:14 PM, Yonik Seeley

Re: Best use of wildcard searches

2007-08-09 Thread Matthew Runo
Hm, I don't see any attachments, I'm forwarding them to you directly. Would anyone else like to see them? ++ | Matthew Runo | Zappos Development | [EMAIL PROTECTED] | 702-943-7833

Re: Best use of wildcard searches

2007-08-09 Thread Matthew Runo
Feel free to run some queries yourself. We opened the firewall for this box... http://66.209.92.171:8080/solr/select/?q=department_exact:Apparel% 3EMen's\%20Apparel% 3EJackets*fq=country_code:USfq=brand_exact:adidaswt=python ++ |

Re: Best use of wildcard searches

2007-08-09 Thread Yonik Seeley
On 8/9/07, Matthew Runo [EMAIL PROTECTED] wrote: Feel free to run some queries yourself. We opened the firewall for this box... http://66.209.92.171:8080/solr/select/?q=department_exact:Apparel% 3EMen's\%20Apparel% 3EJackets*fq=country_code:USfq=brand_exact:adidaswt=python OK, so this query

Re: Best use of wildcard searches

2007-08-09 Thread Matthew Runo
http://66.209.92.171:8080/solr/select/?q=department_exact:Apparel% 3EMen's%20Apparel% 3EJackets*fq=country_code:USfq=brand_exact:adidaswt=python The same exact query, with... wait.. Wow. I'm making myself look like an idiot. I swear that these queries didn't work the first time I ran them...

Re: Best use of wildcard searches

2007-08-09 Thread Yonik Seeley
On 8/9/07, Matthew Runo [EMAIL PROTECTED] wrote: http://66.209.92.171:8080/solr/select/?q=department_exact:Apparel% 3EMen's%20Apparel% 3EJackets*fq=country_code:USfq=brand_exact:adidaswt=python The same exact query, with... wait.. Wow. I'm making myself look like an idiot. I swear that

RE: Best use of wildcard searches

2007-08-09 Thread Jonathan Woods
help thinking it might have lots of applications Jon -Original Message- From: Yonik Seeley [mailto:[EMAIL PROTECTED] Sent: 09 August 2007 21:50 To: solr-user@lucene.apache.org Subject: Re: Best use of wildcard searches On 8/9/07, Matthew Runo [EMAIL PROTECTED] wrote: http

Best use of wildcard searches

2007-08-08 Thread Matthew Runo
Hello! I've been using the standard query handler to do searches like q=department_exact:FooBarBazQux Now, lets assume I have lots of records, with various department trees... 1. FooBarBazQux 2. FooBarBazPut 3. FooBarSomething With SpacesElese 4. FooTotalyDifferentTree I'd like to get all

Re: Best use of wildcard searches

2007-08-08 Thread Yonik Seeley
On 8/8/07, Matthew Runo [EMAIL PROTECTED] wrote: I've been using the standard query handler to do searches like q=department_exact:FooBarBazQux Now, lets assume I have lots of records, with various department trees... 1. FooBarBazQux 2. FooBarBazPut 3. FooBarSomething With SpacesElese 4.

Re: Best use of wildcard searches

2007-08-08 Thread Matthew Runo
OK. So a followup question.. ?q=department_exact:Apparel%3EMen's% 20Apparel*fq=country_code:USfq=brand_exact:adidasfq=hibernated:true returns 0 results. Note the %20 in there for the space character. ?q=department_exact:Apparel%

wildcard searches standard request handler

2007-07-10 Thread Karen Loughran
Hi all, I understand from browsing through the mailing list that I won't be able to perform wildcard searches using disMax request handler. But why doesn't any of the following wildcard searches work when using the standard request handler: Firstly the following query accurately returns 27

Re: wildcard searches standard request handler

2007-07-10 Thread Yonik Seeley
On 7/10/07, Karen Loughran [EMAIL PROTECTED] wrote: I understand from browsing through the mailing list that I won't be able to perform wildcard searches using disMax request handler. But why doesn't any of the following wildcard searches work when using the standard request handler: Firstly

Re: wildcard searches standard request handler

2007-07-10 Thread Yonik Seeley
On 7/10/07, Karen Loughran [EMAIL PROTECTED] wrote: Hi Yonik, whene* does indeed work thanks. Though the Context diff patch fails against my 1.2 download: For now, I'd advise just lowercasing wildcard queries in the client if you know that is how your field is indexed. -Yonik

RE: wildcard searches standard request handler

2007-07-10 Thread Xuesong Luo
That's also what I did in my code, I search for * or ?, if exists, lowercase the query string. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yonik Seeley Sent: Tuesday, July 10, 2007 12:13 PM To: solr-user@lucene.apache.org Subject: Re: wildcard

Re: return matched terms / fuzzy or wildcard searches

2007-03-24 Thread Krystian Napiatek
My Solr-Server: http://www.captionsearch.de/solr.html Everytime you make a new search you get the last response file here: http://www.captionsearch.de/response.xml 2007/3/24, Chris Hostetter [EMAIL PROTECTED]: : Perhaps our use of ConstantScorePrefixQuery by default? : : Ah, that would

Re: return matched terms / fuzzy or wildcard searches

2007-03-24 Thread Mike Klaas
On 3/23/07, Chris Hostetter [EMAIL PROTECTED] wrote: Only a simple prefix query (like: dn*) doesn't work ... and that seems to be because of the way we optimize a PrefixQuery into a ConstantScorePrefixQuery .. a workarround is to allways include a ? in your query when you want highlighting --

return matched terms / fuzzy or wildcard searches

2007-03-23 Thread Krystian Napiatek
Hi, is it possible to get a list of all matched terms, when using queries like: dna~0.7; d?a; dn*; I need the terms for highlighting them later in the output. Thank you greets Krystian

Re: return matched terms / fuzzy or wildcard searches

2007-03-23 Thread Krystian Napiatek
Yes I do: ...hl=onhl.fl=figurehl.fragsize=0hl.snippets=200hl.simple.pre=span style=background-color: tomatohl.simple.post=/span... But the response isn't highlighted using fuzzy or wildcard searches... 2007/3/23, Erik Hatcher [EMAIL PROTECTED]: On Mar 23, 2007, at 5:44 AM, Krystian Napiatek

Re: return matched terms / fuzzy or wildcard searches

2007-03-23 Thread Chris Hostetter
: But the response isn't highlighted using fuzzy or wildcard searches... Hmmm... this seems like a bug in the highlighting, using the sample schema this highlights properly... http://localhost:8983/solr/select/?q=id%3AVA902Bversion=2.2start=0rows=10indent=onfl=idhl=truehl.fl=id

Re: return matched terms / fuzzy or wildcard searches

2007-03-23 Thread Mike Klaas
On 3/23/07, Chris Hostetter [EMAIL PROTECTED] wrote: : But the response isn't highlighted using fuzzy or wildcard searches... Hmmm... this seems like a bug in the highlighting, using the sample schema this highlights properly... http://localhost:8983/solr/select/?q=id%3AVA902Bversion=2.2start

Re: return matched terms / fuzzy or wildcard searches

2007-03-23 Thread Yonik Seeley
On 3/23/07, Mike Klaas [EMAIL PROTECTED] wrote: On 3/23/07, Chris Hostetter [EMAIL PROTECTED] wrote: : But the response isn't highlighted using fuzzy or wildcard searches... Hmmm... this seems like a bug in the highlighting, using the sample schema this highlights properly... http

Re: return matched terms / fuzzy or wildcard searches

2007-03-23 Thread Erik Hatcher
On Mar 23, 2007, at 3:26 PM, Yonik Seeley wrote: On 3/23/07, Mike Klaas [EMAIL PROTECTED] wrote: On 3/23/07, Chris Hostetter [EMAIL PROTECTED] wrote: : But the response isn't highlighted using fuzzy or wildcard searches... Hmmm... this seems like a bug in the highlighting, using

<    1   2