RE: Using cocoon to update index

2007-03-24 Thread Binkley, Peter
I've blogged a method of doing this using Cocoon's webdav transformer: http://www.wallandbinkley.com/quaedam/?p=104 Peter From: Winona Salesky [mailto:[EMAIL PROTECTED] Sent: Fri 3/23/2007 12:14 PM To: solr-user@lucene.apache.org Subject: Using cocoon to upda

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 -

Re: Using cocoon to update index

2007-03-24 Thread Chris Hostetter
: Is anyone using cocoon to index data? I'm trying to do this via cincludes : but I have had no luck. If you are using cocoon, and are POSTing data to : solr via a pipeline, would you share an example of how you have things you may want to take a look at the forest plugin Thorsten wrote, or the C

Re: Backup and distributed index/backup management

2007-03-24 Thread Chris Hostetter
: My question is, even with backup, solr will still have a single index, : right? We will have huge amount of data in index - it is ever increasing. if you have older docs you want to retire out of your index, you'll need to do that manually (delete by query can come in handy) : I want to archiv

Re: Backup and distributed index/backup management

2007-03-24 Thread al patel
Reposting :) Hi: I am novice to solr in terms of backup/operations. We have a single instance of master (solr) working well, I tried the backup scripts etc and could get things working fine. My question is, even with backup, solr will still have a single index, right? We will have huge amount

Re: sorting question

2007-03-24 Thread shai deljo
True, but let me ask the question in a different way. The problem is that when I run the query and order by date then the most recent results are not relevant enough (in general I find I need to do work on top of what solr provides in order to get good relevancy) so I guess I'm looking more for of

Re: schema field type doesn't work

2007-03-24 Thread Dimitar Ouzounov
Thanks a lot ! The analyzer admin tool is indeed useful. On 3/24/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 3/24/07, Bertrand Delacretaz <[EMAIL PROTECTED]> wrote: > On 3/24/07, Dimitar Ouzounov <[EMAIL PROTECTED]> wrote: > > > ...I must be doing something wrong, maybe in the schema. Does a

Re: schema field type doesn't work

2007-03-24 Thread Yonik Seeley
On 3/24/07, Bertrand Delacretaz <[EMAIL PROTECTED]> wrote: On 3/24/07, Dimitar Ouzounov <[EMAIL PROTECTED]> wrote: > ...I must be doing something wrong, maybe in the schema. Does anyone > have any suggestions?.. The best way to debug such problems is with the analyzer admin tool: http://localho

Re: schema field type doesn't work

2007-03-24 Thread Bertrand Delacretaz
On 3/24/07, Dimitar Ouzounov <[EMAIL PROTECTED]> wrote: ...I must be doing something wrong, maybe in the schema. Does anyone have any suggestions?.. The best way to debug such problems is with the analyzer admin tool: http://localhost:8983/solr/admin/analysis.jsp You can try various combinati

schema field type doesn't work

2007-03-24 Thread Dimitar Ouzounov
Hi everybody, I added the following fieldtype in schema.xml : I want to index two types of strings, for example : 12345678 1234-5678 No matter which of the above strings is stored, I'd like to match it by using either 12345678 or 1234-5678. Ever

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 pr