about cache

2007-04-25 Thread James liu
now i use admin gui to moniter cache config i don't know the difference betwin cumulative_ and no *cumulative_* ,,,like cumulative_inserts and inserts and i find evictions always show zeroi m curious when it will change and its meaning -- regards jl

Re: expressing this logic

2007-04-25 Thread James liu
if use customer Analyzer, u can use solr admin gui, and click analyzer which can help you use customer analyzer(i use it to be sure my customer analyzer is ok). if u wanna know query syntax ,,,it same with lucene,,so u can read http://lucene.apache.org/java/docs/queryparsersyntax.html 2007

Re: resin faile to start with solr.

2007-04-25 Thread James liu
3.0.23 yesterday i try and fail. which version u use,,,i just not use pro version. 2007/4/26, Bill Au <[EMAIL PROTECTED]>: Have you tried resin 3.0.x? 3.1 is a development branch so it is less stable as 3.0. Bill On 4/19/07, James liu <[EMAIL PROTECTED]> wrote: > > It work well when i use t

RE: unsubscribe

2007-04-25 Thread Rushabh Doshi
Doh doh doh doh; sorry :) Turns out my email clients can't quite keep up with the traffic on solr-dev and solr-user. Thanks Yonik. -Rushabh -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yonik Seeley Sent: Wednesday, April 25, 2007 11:34 AM To: solr-use

Re: expressing this logic

2007-04-25 Thread Erik Hatcher
What it probably boils down to is how you analyzed (or didn't) those fields. What is your schema for those fields? Erik On Apr 25, 2007, at 4:40 PM, Michael Kimsal wrote: leading and trailing at the same time don't work. :( This is supposedly fixed in a lucene nightly, but I can

Re: Need Help on Indexing and Retrieval Strategy

2007-04-25 Thread Yonik Seeley
On 4/25/07, Jamie Orchard-Hays <[EMAIL PROTECTED]> wrote: I have large TEI.2 docs that I am indexing. These are journal issuess with all the typical sections in them. The main unit of organization and interest is an article which I want to retrieve intact and display (no problem there). The ques

Solr index updating pattern

2007-04-25 Thread Mike Austin
Could someone give advise on a better way to do this? I have an index of many merchants and each day I delete merchant products and re-update my database. After doing this I than re-create the entire index and move it to production replacing the current index. I was thinking about updating the in

Re: resin faile to start with solr.

2007-04-25 Thread Bill Au
Have you tried resin 3.0.x? 3.1 is a development branch so it is less stable as 3.0. Bill On 4/19/07, James liu <[EMAIL PROTECTED]> wrote: It work well when i use tomcat with solr now i wanna test resin,,,i use resin-3.1.0 now it show me [03:47:34.047] WebApp[http://localhost:8080] startin

Re: wrong path in snappuller

2007-04-25 Thread Bill Au
What OS are you running on? The "solr" on the rsync command line is just a label which is defined in rsyncd.conf on the master. rsyncd.conf is created on the fly by the script rsyncd-start: cat < ${solr_root}/conf/rsyncd.conf rsyncd.conf file uid = $(whoami) gid = $(whoami) use chroot

Re: Re[6]: Things are not quite stable...

2007-04-25 Thread Bertrand Delacretaz
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote: ...Regardless, I think it's a good idea to use a newer, released (not RC) version in general, considering 5.1 is one major version behind Agreed, but note that we don't have any factual evidence that the Jetty RC that we use is indeed the cause

Need Help on Indexing and Retrieval Strategy

2007-04-25 Thread Jamie Orchard-Hays
I have large TEI.2 docs that I am indexing. These are journal issuess with all the typical sections in them. The main unit of organization and interest is an article which I want to retrieve intact and display (no problem there). The question I'm working on is whether to index each article as it'

Re: MultiValued field: can I retrieve just one?

2007-04-25 Thread Jamie Orchard-Hays
Thanks guys, that's what I figured. Jamie On 4/25/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 4/25/07, Jamie Orchard-Hays <[EMAIL PROTECTED]> wrote: > If I have a multiValued field, will it always return all items in the > array, or can I retrieve just those in the document with matching > t

Re: MultiValued field: can I retrieve just one?

2007-04-25 Thread Yonik Seeley
On 4/25/07, Jamie Orchard-Hays <[EMAIL PROTECTED]> wrote: If I have a multiValued field, will it always return all items in the array, or can I retrieve just those in the document with matching text? You always get all of them. Lucene does not return to you which field matches a query. Feature

Re: MultiValued field: can I retrieve just one?

2007-04-25 Thread Ryan McKinley
The highlighting results will return fields with matching text, but there is not a way to limit some multivalued fields from the returned documents. Jamie Orchard-Hays wrote: If I have a multiValued field, will it always return all items in the array, or can I retrieve just those in the doc

MultiValued field: can I retrieve just one?

2007-04-25 Thread Jamie Orchard-Hays
If I have a multiValued field, will it always return all items in the array, or can I retrieve just those in the document with matching text? Thanks, Jamie

Re: Re[6]: Things are not quite stable...

2007-04-25 Thread Mike Klaas
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote: I don't know for sure. But from the symptom, when error 404 happens, solr seems to still work fine (so does that part of Jetty.) Then those 404'ed pages may have some solr specific logic in it? I'm really not sure--I've built several long-running,

Re: expressing this logic

2007-04-25 Thread Michael Kimsal
leading and trailing at the same time don't work. :( This is supposedly fixed in a lucene nightly, but I can't get solr and lucene trunks to compile together. Also, I wouldn't be able to convince anyone here to run nightly trunks in production. :) On 4/25/07, Walter Underwood <[EMAIL PROTEC

Re: expressing this logic

2007-04-25 Thread Walter Underwood
Enable leading wildcards and try this: type:changelog AND filename:*angel* wunder On 4/25/07 1:34 PM, "Michael Kimsal" <[EMAIL PROTECTED]> wrote: > Thanks. I'm still no results with your suggestion though. I also tried > > type:+changelog AND ( (filename:angel) OR (filename:angel*) OR > (fi

Re: expressing this logic

2007-04-25 Thread Michael Kimsal
Thanks. I'm still no results with your suggestion though. I also tried type:+changelog AND ( (filename:angel) OR (filename:angel*) OR (filename:*angel) ) but am getting parse errors. :( On 4/25/07, Cody Caughlan <[EMAIL PROTECTED]> wrote: What about: (type:changelog) AND (filename:angel

Re: expressing this logic

2007-04-25 Thread Cody Caughlan
What about: (type:changelog) AND (filename:angel) Or if you do the 3 different type of filename queries, use parenthesis to properly break them up, e..g type:changelog AND (filename:... OR filename:... OR filename:...) I dont know enough about how Lucene's precedence rules, but you might have

Re: Re[4]: Things are not quite stable...

2007-04-25 Thread Erik Hatcher
On Apr 25, 2007, at 3:27 PM, Mike Klaas wrote: On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote: That is understood. For people who are not familiar with Java servlet containers, like myself, the embedded web server takes the least effort to set up. And jetty is supposed be a production quality q

expressing this logic

2007-04-25 Thread Michael Kimsal
Hello all: I'm trying to find a record in my index where the 'type' is changelog and the 'filename' has 'angel' in it. Expressing this as type:changelog filename:+angel or filename:+angel* or filename:+*angel throws a parse error (probably understandably) type:changelog (filename:+angel or fil

Re[6]: Things are not quite stable...

2007-04-25 Thread Jack L
Mike, I don't know for sure. But from the symptom, when error 404 happens, solr seems to still work fine (so does that part of Jetty.) Then those 404'ed pages may have some solr specific logic in it? Regardless, I think it's a good idea to use a newer, released (not RC) version in general, consid

Re: Re[4]: Things are not quite stable...

2007-04-25 Thread Mike Klaas
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote: That is understood. For people who are not familiar with Java servlet containers, like myself, the embedded web server takes the least effort to set up. And jetty is supposed be a production quality quality package, it'll be great that the default pa

unused fields

2007-04-25 Thread Will Johnson
Is there any way to make Solr not throw an Exception when unknown field names are submitted as a part of an otherwise valid document? Ie. I have field named 'foo' in my document but it's not in my schema. For various bookkeeping / tracking purposes I need to annotate the documents with extra info

Re: unsubscribe

2007-04-25 Thread Yonik Seeley
On 4/25/07, Rushabh Doshi <[EMAIL PROTECTED]> wrote: Unsubscribe Ahh, http://www.pelago.com , that's were Darren went ;-) Try the links on this page for unsubscribing: http://lucene.apache.org/solr/mailing_lists.html -Yonik

Re[4]: Things are not quite stable...

2007-04-25 Thread Jack L
That is understood. For people who are not familiar with Java servlet containers, like myself, the embedded web server takes the least effort to set up. And jetty is supposed be a production quality quality package, it'll be great that the default package with jetty can be used for production. --

unsubscribe

2007-04-25 Thread Rushabh Doshi
Unsubscribe

Re: solr utf 16 ?

2007-04-25 Thread Walter Underwood
UTF-16 support should not require any changes to the XML parsing. All XML parsers are required to support that encoding. The real change is implementing RFC 3023 (XML Media Types) so that the encoding can be specified over HTTP. wunder On 4/23/07 11:13 AM, "Mike Klaas" <[EMAIL PROTECTED]> wrote:

Re: Re[2]: Things are not quite stable...

2007-04-25 Thread Mike Klaas
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote: > Are you running a Solr release, or a snapshot? It'd be interesting to > know If you're running code that predates the fix done in SOLR-173. In > my case, on the production system the code is older than that. I'm running the 1.1.0 release. Maybe i

solr and https

2007-04-25 Thread brian beard
Has anyone tried using solr over https? Is there any reason why this might not be feasible? Brian Beard _ Mortgage refinance is Hot. *Terms. Get a 5.375%* fix rate. Check savings https://www2.nextag.com/goto.jsp?product=10035&

Re: simple query

2007-04-25 Thread Bertrand Delacretaz
On 4/25/07, Gal Nitzan <[EMAIL PROTECTED]> wrote: When I search Q=title:"dog%20da*" ... Probably has to do with the way your "title" field is analyzed. The best way to debug such problems is with the analyzer admin tool: http://localhost:8983/solr/admin/analysis.jsp - that page will show

Re: Re[2]: Things are not quite stable...

2007-04-25 Thread Bertrand Delacretaz
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote: ...Maybe it's time to think about upgrading Jetty... It's in the pipeline, see https://issues.apache.org/jira/browse/SOLR-128 -Bertrand

simple query

2007-04-25 Thread Gal Nitzan
Hi, I'm new to Solr... I'm trying to create an Auto Complete combo which is based on results from Solr but I ran into a few problems which are related to the query. The Schema field is: What I try to do: Q=title:"d*" # get all title which has the letter d followed by anything Q=title:"do*"

Re[2]: Things are not quite stable...

2007-04-25 Thread Jack L
Hello Bertrand, >> ...solr stops functioning properly after running for a few days. >> The symptom is search returning nothing, or when I go to /solr/admin/, >> I get file browsing page showing a list of files (.css, etc),... > Are your symptoms similar to those of > https://issues.apache.org/jir

Re: wrong path in snappuller

2007-04-25 Thread galo
Ok, i will create an issue. I got round it changing this > : rsync -Wa${verbose}${compress} --delete ${sizeonly} \ > : ${stats} rsync://${master_host}:${rsyncd_port}/solr/${name}/ > : ${data_dir}/${name}-wip for > : rsync -Wa${verbose}${compress} --delete ${sizeonly} \ > : ${stats} ${master_ho

Re: Things are not quite stable...

2007-04-25 Thread Bertrand Delacretaz
On 4/25/07, Jack L <[EMAIL PROTECTED]> wrote: ...solr stops functioning properly after running for a few days. The symptom is search returning nothing, or when I go to /solr/admin/, I get file browsing page showing a list of files (.css, etc),... Are your symptoms similar to those of https://i

Things are not quite stable...

2007-04-25 Thread Jack L
I'm running the default solr package with my data, about 10 million small documents. I'm not sure if it's jetty or solr, but often times solr stops functioning properly after running for a few days. The symptom is search returning nothing, or when I go to /solr/admin/, I get file browsing page sh

Re: just advice

2007-04-25 Thread James liu
Just path. for example. i have a slaver and have 10 instances which name like solr1, solr2,solr3... if solr support user define config file 's path.. i will use /usr/solrapp/conf/solr1_solrconfig.xml, solr2_solrconfig.xml, solr3_solrconfig.xml...and so. when i test these instance, i just stay

Re: just advice

2007-04-25 Thread Chris Hostetter
: i use solr multi instance, now i m testing solr and i find config file exist : in divided directory. : : so i have to change path to modify config file. : : why not use user defined config file? i'm not sure if i understand your question ... you want to be able to tell Solr to use a different c