Problems with dates!!!

2008-12-19 Thread lunapolar
Hello!! I'm new working with solr. I've got a mysql database with some dates like that: 2009-01-31 2009-02-01 2008-11-29 2008-11-30 but when I did a query, *:* for example, I realized that solr had this: 2009-01-30T23:00:00Z 2009-01-31T23:00:00Z 2008-11-28T23:00:00Z 2008-11-29T23:00:00Z A day

RE: Change in config file (synonym.txt) requires container restart?

2008-12-19 Thread Plaatje, Patrick
Hi , I'm wondering if you could not implement a custom filter which reads the file realtime (you might even keep the create synonym map in memory for a predefined time). This then doesn't need a restart of the container. Best, Patrick -Original Message- From: Shalin Shekhar Mangar [mail

Re: looking for multilanguage indexing best practice/hint

2008-12-19 Thread Sujatha Arun
Thanks Daniel and Erik, The requirement from the user end is to only search in that particular language and not across languages. Also going forward we will be adding more languages. so if i have separate fields for each language ,then we need to change the schema everytime and that will not sca

Re: Multi language search help

2008-12-19 Thread Sujatha Arun
Thanks Grant, The requirement from the user end is to only search in that particular language and not across languages. Also going forward we will be adding more languages. so if i have separate fields for each language ,then we need to change the schema everytime and that will not scale very we

FileBasedSpellChecker Multiple wordlist source files

2008-12-19 Thread tushar kapoor
I am using FileBasedSpellChecker and currently configuring it through one source file. Something like this - default solr.spelling.FileBasedSpellChecker ./files/spellings.txt UTF-8 ./spellcheckerindex I have a whole bunch of other wordlist files which I want

Date Stats support using Solr

2008-12-19 Thread Jana, Kumar Raja
Hi, I was searching for features in Solr which would give me the maximum and minimum values for various numeric and name fields. I found the Stats Component (Solr-680) and thanks a ton for that !!! J Is there a similar component for date fields too? I played a bit with the stats component b

Re: FileBasedSpellChecker Multiple wordlist source files

2008-12-19 Thread Grant Ingersoll
Unfortunately, it doesn't support that right now. One thought, though, keep them as separate files, but then just have your build process cat them together for deployment. -Grant On Dec 19, 2008, at 7:49 AM, tushar kapoor wrote: I am using FileBasedSpellChecker and currently configuring i

Re: Distributed Searching - Limitations?

2008-12-19 Thread Yonik Seeley
On Fri, Dec 19, 2008 at 1:59 AM, Pooja Verlani wrote: > Hi, > I am planning to use Solr's distributed searching for my project. But while > going through http://wiki.apache.org/solr/DistributedSearch, i found a few > limitations with it. Can anyone please explain the 2nd and 3rd points in the > li

Re: Get All terms from all documents

2008-12-19 Thread roberto
Erick, Thanks this sounds good, i'll try. Mike, Could you give more details about query logs? Thanks On Fri, Dec 19, 2008 at 12:02 AM, Mike Klaas wrote: > > On 18-Dec-08, at 10:53 AM, roberto wrote: > > Erick, >> >> Thanks for the answer, let me clarify the thing, we would like to have a >>

MLT.FL - Invalid Date String

2008-12-19 Thread gullywompr
I'm trying to boost more like this queries with a timestamp field. The field is indexed in universal format, including the Z at the end. I can include the timestamp field in fl, qf, and mlt.qf but when I try to add the field to the mlt.fl list, I get a 400 bad request error with "Invalid Date St

Re: Get All terms from all documents

2008-12-19 Thread Grant Ingersoll
I'd add you probably don't want just the query logs, people may search for things that aren't in the index, too. Your call as to whether that is useful or not. Also, have a look at the TermsComponent, as it will tell you the doc freq for terms. On Dec 19, 2008, at 10:08 AM, roberto wrote

Re: Get All terms from all documents

2008-12-19 Thread Walter Underwood
At Netflix, we load the completion lexicon with movie titles, person names, and a few aliases. Even then, we find a few misspellings in our metadata (is it "NWA" or "N.W.A."?). Extracting terms from documents will find a lot of misspellings. You really do not want to rely on random users to correc

Solrj: Getting response attributes from QueryResponse

2008-12-19 Thread Mark Ferguson
Hello, I am trying to get the numFound attribute from a returned QueryResponse object, but for the life of me I can't find where it is stored. When I view a response in XML format, it is stored as an attribute on the response node, e.g.: However, I can't find a way to retrieve these attributes

Re: Solrj: Getting response attributes from QueryResponse

2008-12-19 Thread Kevin Hagel
http://lucene.apache.org/solr/api/org/apache/solr/client/solrj/response/QueryResponse.html#getResults() returns a SolrDocumentList http://lucene.apache.org/solr/api/org/apache/solr/common/SolrDocumentList.html which has that information On Fri, Dec 19, 2008 at 2:22 PM, Mark Ferguson wrote: > H

Re: Solrj: Getting response attributes from QueryResponse

2008-12-19 Thread Mark Ferguson
Oops .. thanks for the quick reply, I shouldn't have missed this. :) Mark On Fri, Dec 19, 2008 at 1:25 PM, Kevin Hagel wrote: > > http://lucene.apache.org/solr/api/org/apache/solr/client/solrj/response/QueryResponse.html#getResults()

Re: [ANNOUNCE] Solr Logo Contest Results

2008-12-19 Thread Paul Borgermans
Maybe one remark: shouldn't it be Apache instead of apache in the logo (first letter capitalized)? Otherwise I like it in spite of my first choice didn't make it Cheers and congrats to Michiel! Paul On Thu, Dec 18, 2008 at 8:50 PM, Jeryl Cook wrote: > looks cool :), how about a talking mascot

highlighting and stemming

2008-12-19 Thread David Bowen
We have two text fields, one for author names, and the other for the body of the document. It often happens that the author names also appear in the body of the document. We turned off stemming for the author field to avoid unexpected matches when searching by author. Now, suppose we have an aut