search engine for regional bulletins

2006-11-28 Thread Thorsten Scherler
Hi all, I am developing a search engine for a governmental body. This search engine has to index pure xml documents which follow a custom xml schema. The xml documents contain information about laws and official announcements for Andalusia. I need to implement different filter for the search. The

Re: search engine for regional bulletins

2006-11-28 Thread Bertrand Delacretaz
Hi Thorsten, good to see you here! On 11/28/06, Thorsten Scherler <[EMAIL PROTECTED]> wrote: ...Following the tutorial and looking at the examples it seems that solr only supports one document type. 3007WFP Dell Widescreen UltraSharp 3007WFP ... That's right, to add documents to a So

Re: search engine for regional bulletins

2006-11-28 Thread Thorsten Scherler
On Tue, 2006-11-28 at 10:00 +0100, Bertrand Delacretaz wrote: > Hi Thorsten, good to see you here! :) Hi Bertrand, thanks very much for this warm welcome and I am as well glad to meet you here. > > On 11/28/06, Thorsten Scherler > <[EMAIL PROTECTED]> wrote: > > > ...Following the tutorial and

Re: search engine for regional bulletins

2006-11-28 Thread Yonik Seeley
On 11/28/06, Thorsten Scherler <[EMAIL PROTECTED]> wrote: That is good to hear, so if somebody (e.g. me) would check all files for cleanness then we could release, right? Perfect. Correct. All IP issues have been cleared, so It's just a matter of taking the time to put the release into a form

Re: search engine for regional bulletins

2006-11-28 Thread Thorsten Scherler
On Tue, 2006-11-28 at 11:30 -0500, Yonik Seeley wrote: > On 11/28/06, Thorsten Scherler > <[EMAIL PROTECTED]> wrote: > > That is good to hear, so if somebody (e.g. me) would check all files for > > cleanness then we could release, right? Perfect. > > Correct. All IP issues have been cleared, so I

Re: How configure SnowballAnalyzer to language Spanish

2006-11-28 Thread Yonik Seeley
Hi Iris, An "Analyzer" is just a tokenizer followed by a series of token filters. Stick with the TextField that you defined below and you should be fine. I'm not sure how the Spanish stemmer works, and if it expects to work on accented characters... if so, you may want to move ISOLatin1AccentFilt

Re: search engine for regional bulletins

2006-11-28 Thread Yonik Seeley
On 11/28/06, Thorsten Scherler <[EMAIL PROTECTED]> wrote: On Tue, 2006-11-28 at 11:30 -0500, Yonik Seeley wrote: > On 11/28/06, Thorsten Scherler > <[EMAIL PROTECTED]> wrote: > > That is good to hear, so if somebody (e.g. me) would check all files for > > cleanness then we could release, right? P

RE: MatchAllDocsQuery in solr?

2006-11-28 Thread Fuad Efendi
Workaround == Define a field abcd with constant value 'abcd' for all documents (choose value not listed in any 'stop-word' etc.). Lucene query 'scan_all:abcd' will retrieve 'all' documents. Enjoy! -Original Message- From: Tom Sent: Tuesday, November 21, 2006 5:08 PM To: solr-use

Re: MatchAllDocsQuery in solr?

2006-11-28 Thread Yonik Seeley
FYI, I committed the Lucene patch that allows the *:* syntax today. It will be available in Solr when we do another lucene sync-up. -Yonik

RE: MatchAllDocsQuery in solr?

2006-11-28 Thread Fuad Efendi
Sorry, Hoss already wrote (even better solution): >...if you use the uniqueKey feature, then you can do id:[* TO *] ... that >acctually works on any field to find all docs... Fuad wrote: >Define a field abcd with constant value >'abcd' for all documents (choose value not listed in any 'stop-word'

changes in Lucene not visible through Solr

2006-11-28 Thread Kaan Erdener
hello, I'm pulling data into Lucene several times an hour, approaching a total document count of ~2 million. Sometimes I pull in brand new data, other times I replace an existing document with an updated copy. The number of documents that I update in Lucene will pretty much never be more

Re: changes in Lucene not visible through Solr

2006-11-28 Thread Mike Klaas
On 11/28/06, Kaan Erdener <[EMAIL PROTECTED]> wrote: I thought it might be a caching issue, but I have all of the cache options disabled in solfconfig.xml and the problem persists. I also ran Lucene optimization while Solr was running, but again no fix. If anyone has any suggestions for configur

Re: changes in Lucene not visible through Solr

2006-11-28 Thread Kaan Erdener
I'm glad I asked. I probably wouldn't have discovered that on my own... :) This worked great: curl http://localhost:8983/solr/update --data-binary '' thanks, Kaan On Nov 29, 2006, at 12:31 AM, Mike Klaas wrote: On 11/28/06, Kaan Erdener <[EMAIL PROTECTED]> wrote: I thought it migh

Re: changes in Lucene not visible through Solr

2006-11-28 Thread Chris Hostetter
: This worked great: : curl http://localhost:8983/solr/update --data-binary '' you should go turn your caching options back on ... they'll help out a lot if you tend to get any repetition in your queries, and they are "smart" caches ... entries will expire on commit, and with autoWarming co