Solr and location based searches

2010-02-01 Thread sandro . ruch
Hi all, We want to use Solr because of its facet based functionalities... now the customer want to combine searches based on facets with location based searches (all objects 10 miles around this particular zip)... Is this possible in Solr or is there no way? Thanks and best regards, Sandro

Re: query on not stored field

2010-02-01 Thread Erik Hatcher
On Feb 1, 2010, at 8:45 PM, Matthieu Labour wrote: What about a field that is both indexed="false" stored="false" ... does it have an impact into solr meaning is it being ignored by solr/ lucene? is it like the field was not being passed? Yes, that's a trick in Solr to ignore a field. The e

Re: query on not stored field

2010-02-01 Thread Matthieu Labour
Koji, Eric Thank you for your reply One more question: What about a field that is both indexed="false" stored="false" ... does it have an impact into solr meaning is it being ignored by solr/lucene? is it like the field was not being passed? Thank you! --- On Mon, 2/1/10, Erik Hatcher wrote:

Indexing a oracle warehouse table

2010-02-01 Thread caman
Hello all, hope someone can point me to right direction. I am trying to index an oracle warehouse table(TableA) with 850 columns. Out of the structure about 800 fields are CLOBs and are good candidate to enable full-text searching. Also have few columns which has relational link to other tables.

Re: query on not stored field

2010-02-01 Thread Erik Hatcher
First of all, the schema snippets you provided aren't right. It's indexed="true", not index="analyzed". And it's stored, not store. But, to answer your question, the stored nature of the field has nothing whatsoever to do with it's searchability. Stored only affects whether you can get t

Re: query on not stored field

2010-02-01 Thread Koji Sekiguchi
Both index="analyzed" and store="yes" are not parsed by Solr schema. Use indexed and stored instead of index and store, and set either "true" or "false". Koji -- http://www.rondhuit.com/en/

query on not stored field

2010-02-01 Thread Matthieu Labour
Hi on the following field [...] [...] the following query works {!lucene q.op=AND} [...] AND (status.message&STRING_ANALYZED_NO_US:(some keywords) AND [...] I was wondering If the query syntax above works as well if the store property of the field is set to NO. [...] [...] I ha

DataImportHandler delta-import confusion

2010-02-01 Thread Jon Drukman
First, let me just say that DataImportHandler is fantastic. It got my old mysql-php-xml index rebuild process down from 30 hours to 6 minutes. I'm trying to use the delta-import functionality now but failing miserably. Here's my entity tag: (some SELECT statements reduced to increase readabil

Re: Contributors - Solr in Action Case Studies

2010-02-01 Thread Otis Gospodnetic
Hello everyone, Thanks to all who emailed me so far. This is just another reminder for those who missed the first email below. Please let us know if you'd like to contribute a piece to Solr in Action about your interesting use of Solr. Thanks, Otis Sematext :: http://sematext.com/ :: Sol

Fwd: machine tags, copy fields and pattern tokenizers

2010-02-01 Thread straup
Hi, Just a quick note to mention that I finally figured (most of) this out. The short version is that if there's an explicit "index" analyzer (as in type="index") but not a corresponding "query" analyzer then Solr appears to use the first for all cases. I guess this makes sense but it's a bi

weird behabiour when setting negative boost with bq using dismax

2010-02-01 Thread Marc Sturlese
I already asked about this long ago but the answer doesn't seem to work... I am trying to set a negative query boost to send the results that match field_a: 54 to a lower position. I have tried it in 2 different ways: bq=(*:* -field_a:54^1) bq=-field_a:54^1 None of them seem to work. W

RE: solr - katta integration

2010-02-01 Thread V SudershanReddy
Hi Jason, I looked at your way of integrating katta into solr in issue 1395 and I was trying to understand the architecture of the whole set up . I understand that Solr+Katta nodes talk to each other via Hadoop RPC (provided by Katta). Is the real search being taken care by SOLR and the SOLRs co

What is the version=2.2 refers in solr admin url

2010-02-01 Thread ashokcz
Hi All , I m using solr admin to try out some search results. was trying with solr 1.2 and then checking with solr 1.4 , just got a doubt on looking at the url parameters. i could see version=2.2 in the url . what that version refers to ?? just curious to know about it :) :) -- View this messa

Re: Wildcard Search and Filter in Solr

2010-02-01 Thread ashokcz
hey thanks ravi , ahmed and Erik for your reply. though its tough to change my solr version , still let me try out at 1.4 and see. Erik Hatcher-4 wrote: > > Note that the query analyzer output is NOT doing query _parsing_, but > rather taking the string you passed and running it through the

Re: Problem in indexing on large data set by Dataimporthandler in solr

2010-02-01 Thread Erik Hatcher
Can you give it a shot on Solr 1.4 instead? DIH has had numerous enhancements/fixes since 1.3. Erik On Feb 1, 2010, at 8:42 AM, Vijayant Kumar wrote: Hi, I am trying to index some large set of data in solr using dataimporthandler. It is working fine for small set but when I am

Problem in indexing on large data set by Dataimporthandler in solr

2010-02-01 Thread Vijayant Kumar
> Hi, > > I am trying to index some large set of data in solr using > dataimporthandler. > > It is working fine for small set but when I am trying to index on large > set it produces error. > > I am using solr version 1.3 and mysql version Ver 14.7 Distrib 4.1.20, > for > redhat-linux-gnu (i686)

Re: multi term, multi field, auto suggest

2010-02-01 Thread Lukas Kahwe Smith
On 01.02.2010, at 13:27, Lukas Kahwe Smith wrote: > > On 29.01.2010, at 15:40, Lukas Kahwe Smith wrote: > >> I am still a bit unsure how to handle both the lowercased and the case >> preserved version: >> >> So here are some examples: >> UBS => ubs|UBS >> Kreuzstrasse => kreuzstrasse|Kreuzstr

Re: multi term, multi field, auto suggest

2010-02-01 Thread Lukas Kahwe Smith
On 29.01.2010, at 15:40, Lukas Kahwe Smith wrote: > I am still a bit unsure how to handle both the lowercased and the case > preserved version: > > So here are some examples: > UBS => ubs|UBS > Kreuzstrasse => kreuzstrasse|Kreuzstrasse > > So when I type "Kreu" I would get a suggestion of "Kre

Re: getting error when ":" in the query

2010-02-01 Thread Ahmet Arslan
> However I would also like to know that, is there any short > way to put "\" > before special character which will not effect the > performance. There is a static method in org.apache.lucene.queryParser.QueryParser that does this: QueryParser.escape(String s);