Re: always fail to update the first time after I restart the server

2007-08-12 Thread Chris Hostetter
: Message-ID: : <[EMAIL PROTECTED]> : In-Reply-To: <[EMAIL PROTECTED]> http://people.apache.org/~hossman/#threadhijack When starting a new discussion on a mailing list, please do not reply to an existing message, instead start a fresh email. Even if you change the subject line of your email

Re: EmbeddedSolr and optimize

2007-08-12 Thread Chris Hostetter
: HTTP, I tried to optimize by passing the true flag to the : CommitUpdateCommand. : : When optimizing an index with Lucene directly it doubles the size of the : index temporarily and then deletes the old segments that were optimized. : Instead, what happened was the old segments were still there.

Re: Date rounding up

2007-08-12 Thread Chris Hostetter
: I think there might be something wrong with the date time rounding up. I : tried this query: "q=*:*&fq=listedDate:[NOW/DAY-1DAY TO *]" which I think : should return results since yesterday. So if today is 9th of August, it : should return all results from the 8th of August. However, Solr returns

Re: FunctionQuery and boosting documents using date arithmetic

2007-08-12 Thread Chris Hostetter
: I'm having the date boosting function as well. I'm using this function: : F = recip(rord(creationDate),1,1000,1000)^10. However, since I have around : 10,000 of documents added in one day, rord(createDate) returns very : different values for the same createDate. For example, the last document yo

Re: how to retrieve all the documents in an index?

2007-08-12 Thread Pieter Berkel
Try using q=*:* to match all documents in the index. Piete On 13/08/07, Yu-Hui Jin <[EMAIL PROTECTED]> wrote: > > Hi, there, > > I found the following post on the web. Is this still the simplest > get-around > to retrieve all documents in an index? (I'm asking just in case I don't > know > ther

how to retrieve all the documents in an index?

2007-08-12 Thread Yu-Hui Jin
Hi, there, I found the following post on the web. Is this still the simplest get-around to retrieve all documents in an index? (I'm asking just in case I don't know there's a more standard way to do that now.) thanks, -Hui >From "Fuad Efendi" < [EMAIL PROTECTED]> Subject RE: MatchAl

Re: [Solrj] Documentation & SolrServer#Ping

2007-08-12 Thread Ryan McKinley
Where can I find some documentation of Solrj? Does it have a wiki page or something? It does not yet have good external documentation. We will definatly have something before solr 1.3, but for now, looking at the source and test is the best option. Am I using this method improperly or i

Re: question: how to divide the indexing into sperate domains

2007-08-12 Thread Yonik Seeley
On 8/12/07, Ben Shlomo, Yatir <[EMAIL PROTECTED]> wrote: > I do have some unused fields inside the csv file. > But they are not empty. > They are numeric they can be anything between 0 to 10,000 > Can I do something like > f.unused.map=*:98765 Wildcards / regex isn't supported for that. Your best

Re: Spell Check Handler

2007-08-12 Thread climbingrose
I'm happy to contribute code for the SpellCheckerRequestHandler. I'll post the code once I strip off stuff related to our product. On 8/12/07, Pieter Berkel <[EMAIL PROTECTED]> wrote: > > On 11/08/07, > climbingrose< > [EMAIL PROTECTED]> wrote: > >

Re: FunctionQuery and boosting documents using date arithmetic

2007-08-12 Thread climbingrose
We add around 10,000 docs during week days and 5,000 during weekends. On 8/12/07, Pieter Berkel <[EMAIL PROTECTED]> wrote: > > Do you consistently add 10,000 documents to your index every day or does > the > number of new documents added per day vary? > > > On 11/08/07, climbingrose <[EMAIL PROTEC

Re: FunctionQuery and boosting documents using date arithmetic

2007-08-12 Thread Pieter Berkel
Do you consistently add 10,000 documents to your index every day or does the number of new documents added per day vary? On 11/08/07, climbingrose <[EMAIL PROTECTED]> wrote: > > I'm having the date boosting function as well. I'm using this function: > F = recip(rord(creationDate),1,1000,1000)^10.

Re: FunctionQuery and boosting documents using date arithmetic

2007-08-12 Thread Pieter Berkel
On 11/08/07, Chris Hostetter <[EMAIL PROTECTED]> wrote: > > i would agree with you there, this is where a more robust (ie: > less efficient) DateField-ish class that supports configuration options > to specify: > 1) the output format > 2) the input format(s) > 3) the indexed format > ...as Si