Re: about cache

2007-04-26 Thread James liu
thk u.. im testing solr now. 2007/4/27, Koji Sekiguchi <[EMAIL PROTECTED]>: I don't understand your question very well.. If you follow the steps in my previous mail, you *can* see your cache evictions come to positive number. (I thought you wanted to see it) With your production system, y

Re: about cache

2007-04-26 Thread Koji Sekiguchi
I don't understand your question very well.. If you follow the steps in my previous mail, you *can* see your cache evictions come to positive number. (I thought you wanted to see it) With your production system, you have to set the proper size rather than 1. regards, Koji James liu wrote: u

Question to php to do with multi index

2007-04-26 Thread James liu
php not support multi thread,,,and how can u solve with multi index in parallel? now i use curl_multi maybe more effect way i don't know,,,so if u know, tell me. thks. -- regards jl

Re: about cache

2007-04-26 Thread James liu
u close queryResultCache if u set its size=1 hitratio will be zero if u do that. i think these data when u test, is it right? 2007/4/27, Koji Sekiguchi <[EMAIL PROTECTED]>: These numbers are a part of our real data. If you want to see positive number for evictions, you can: 1. set queryRe

Re: case sensitivity

2007-04-26 Thread Michael Kimsal
We're (and by 'we' I mean my esteemed colleague!) working on patching a few of these items to be in the solrconf.xml file and should likely have some patches submitted next week. It's being done on 'company time' and I'm not sure about the exact policy/procedure for this sort of thing here (or in

Re: about cache

2007-04-26 Thread Koji Sekiguchi
These numbers are a part of our real data. If you want to see positive number for evictions, you can: 1. set queryResultCache size to 1 2. restart Solr 3. issue two *unique* queries 4. see admin page At step 4, you should see hitratio: 0.00 and evictions: 1. Thanks, Koji James liu wrote: The

Re: about cache

2007-04-26 Thread James liu
first thk u reply. maybe u tell me the procedure i will test it by myself. my test size=sum(rows)one query=10,two query(new keyword)=20 2007/4/27, James liu <[EMAIL PROTECTED]>: These data is true ? hitration is 0?? size=1? how do u test it? i think these data is impossible. 200

Re: case sensitivity

2007-04-26 Thread Erik Hatcher
On Apr 26, 2007, at 6:03 PM, Michael Kimsal wrote: My colleague, after some digging, found in SolrQueryParser (around line 62) setLowercaseExpandedTerms(false); The default for Lucene is true. Was this intentional? Or an oversight? I was just about to respond that this is likely the issu

Re: about cache

2007-04-26 Thread James liu
These data is true ? hitration is 0?? size=1? how do u test it? i think these data is impossible. 2007/4/27, Koji Sekiguchi <[EMAIL PROTECTED]>: > if u try it. and u find it always 0 Are you talking about evistions? If you are talking about evictions and it is always zero, it shows that y

Re: about cache

2007-04-26 Thread Koji Sekiguchi
> if u try it. and u find it always 0 Are you talking about evistions? If you are talking about evictions and it is always zero, it shows that you have enough room in your cache in comparison to your load. By way of example, when we did load test for "size==1 cache", we could see: - queryResult

Re: resin faile to start with solr.

2007-04-26 Thread James liu
but it is ok when i use tomcat. 2007/4/26, Ken Krugler <[EMAIL PROTECTED]>: >3.0.23 yesterday i try and fail. > >which version u use,,,i just not use pro version. From the error below, either your schema.xml file is messed up, or it might be that you still need to uncomment out the lines at th

Re: about cache

2007-04-26 Thread James liu
if u try it. and u find it always 0 2007/4/26, Koji Sekiguchi <[EMAIL PROTECTED]>: I think cumulative_ counters are the total count of successive SolrIndexSearchers' cache. For example, you have a registered searcher and you see: inserts: 1 cumulative_inserts: 1 Then you update your index and

Re: case sensitivity

2007-04-26 Thread Michael Kimsal
My colleague, after some digging, found in SolrQueryParser (around line 62) setLowercaseExpandedTerms(false); The default for Lucene is true. Was this intentional? Or an oversight? Perhaps it's not related to my problem, but it seems that it might be. Thanks in advance! On 4/26/07, Michael

Re: case sensitivity

2007-04-26 Thread Michael Kimsal
type:changelog AND ( ( (listing:Fox) or (listing:Fox*) or (listing:*Fox) ) ) and type:changelog AND ( ( (listing:fox) or (listing:fox*) or (listing:*fox) ) ) Is this to do with the wildcards? Actually, I've just answered my own question. type:changelog AND ( ( (listing:fox) ) ) and type:changel

Re: case sensitivity

2007-04-26 Thread Michael Kimsal
I was just writing a followup. I'm using the default text field type That looks to me like it's got LowerCaseFilterFactory in the query analyzer and t

Re: case sensitivity

2007-04-26 Thread Erik Hatcher
On Apr 26, 2007, at 5:43 PM, Michael Kimsal wrote: I've looked through the mailing lists and can't find much of anything regarding case sensitivity. It seems SOLR is case sensitive by default - I'm using the default settings with a very basic schema - just text fields. All depends on the a

case sensitivity

2007-04-26 Thread Michael Kimsal
I've looked through the mailing lists and can't find much of anything regarding case sensitivity. It seems SOLR is case sensitive by default - I'm using the default settings with a very basic schema - just text fields. Is there any way to tell the query parser to be case insensitive during a que

Re: expressing this logic

2007-04-26 Thread Michael Kimsal
I solved this with the following syntax: *type:changelog AND ( ( (listing:fox) or (listing:fox*) or (listing:*fox) ) ) *That seems to give us what we're looking for. However, it brought up another question which I'll post in a moment. On 4/25/07, James liu <[EMAIL PROTECTED]> wrote: if use

Re: Help with Setup

2007-04-26 Thread Sean Bowman
Try: curl http://localhost:8080/solr/update --data-binary '2008The Rain in Spain Falls Mainly In The Plain' And see if that works. I don't think curl lets you put a filename in for the --data-binary parameter. Has to be the actual data, though something like this might also work: curl http://

Re: Help with Setup

2007-04-26 Thread Ryan McKinley
paladin:/data/solr mtorgler1$ curl http://localhost:8080/solr/update --data-binary articles.xml org.xmlpull.v1.XmlPullParserException: only whitespace content allowed before start tag and not a (position: START_DOCUMENT seen a... @1:1) at org.xmlpull.mxp1.MXParser.parseProlog(MXParser

Re: Help with Setup

2007-04-26 Thread Cody Caughlan
For the storyText "field" element, is that wrapping only in this email or is the source document wrapping like that as well? /cody On 4/26/07, Mike <[EMAIL PROTECTED]> wrote: Greetings I've gotten SOLR installed and the admin screens working. At this point I'm just trying to get my add record

Help with Setup

2007-04-26 Thread Mike
Greetings I've gotten SOLR installed and the admin screens working. At this point I'm just trying to get my add record to be grabbed by the SOLR update process, but unfortunately, I'm getting a whitespace error that I could use some pointers on. I've searched the site and found similar

RE: Solrsharp feedback

2007-04-26 Thread Mike Austin
Jeff, I reviewed your code a few days ago (and again today after seeing your email) and it looks good. I'm not as interested in the Query and Results namespaces since I pushed most of my facet and query code into the solr servlet. However I would like to use the Update, Indexing, and Configuration

Re: Solrsharp feedback

2007-04-26 Thread Otis Gospodnetic
Hi Jeff, Ah, smells like the same problem that Lucene.net is having - the lack of people with interest in C# here at ASF. :( I'm BCC-ing somebody who might be interested in looking at your C# client for Solr. Otis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Simpy -- http://www.si

Re: Solr index updating pattern

2007-04-26 Thread Yonik Seeley
On 4/26/07, Mike Klaas <[EMAIL PROTECTED]> wrote: On 4/25/07, Mike Austin <[EMAIL PROTECTED]> wrote: > 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

need

2007-04-26 Thread Yosvanys Aponte Báez
I need a virtual machine that have instaled solr Some body know where I can find it. Universidad 2008 Del 11 al 15 de febrero del 2008 Palacio de Convenciones. La Habana. Cuba. Sitio Web: http://www.universidad2008.cu

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

2007-04-26 Thread Otis Gospodnetic
Jetty is quite good and its developers are very responsive and agile. Simpy.com is a fairly high-traffic site and runs Jetty (5.*, soon 6.*) behind Apache. Otis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Simpy -- http://www.simpy.com/ - Tag - Search - Share - Origin

Re: Solr index updating pattern

2007-04-26 Thread Mike Klaas
On 4/25/07, Mike Austin <[EMAIL PROTECTED]> wrote: 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

Re: Additive scoring using Dismax...

2007-04-26 Thread Mike Klaas
On 4/26/07, escher2k <[EMAIL PROTECTED]> wrote: I am trying to search across multiple fields using the AND operator. Somehow, when the results are returned, the score seems to be retrieving the max value and not really adding them up. In the example given below, the value that is returned (825)

Additive scoring using Dismax...

2007-04-26 Thread escher2k
I am trying to search across multiple fields using the AND operator. Somehow, when the results are returned, the score seems to be retrieving the max value and not really adding them up. In the example given below, the value that is returned (825) is really the max instead of what I was expecting

Re: Updating a distributed collection

2007-04-26 Thread Sean Bowman
Thanks. Just wanted to check before we dove into configuring the load balancers. On 4/26/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 4/26/07, Sean Bowman <[EMAIL PROTECTED]> wrote: > If we configure multiple servers to replicate an index and hide them > behind a load balancer, how exactly do

Re: Updating a distributed collection

2007-04-26 Thread Yonik Seeley
On 4/26/07, Sean Bowman <[EMAIL PROTECTED]> wrote: If we configure multiple servers to replicate an index and hide them behind a load balancer, how exactly do we update documents to the index? Do we have to send updates just to the master server directly? Yes. The load-balancer part is only f

Updating a distributed collection

2007-04-26 Thread Sean Bowman
If we configure multiple servers to replicate an index and hide them behind a load balancer, how exactly do we update documents to the index? Do we have to send updates just to the master server directly? Or does the slave somehow manage to forward the update request to the master server behind t

Re: about cache

2007-04-26 Thread Koji Sekiguchi
I think cumulative_ counters are the total count of successive SolrIndexSearchers' cache. For example, you have a registered searcher and you see: inserts: 1 cumulative_inserts: 1 Then you update your index and do commit, you got a new searcher. At this moment, non cumulative_ counters come to

Re: resin faile to start with solr.

2007-04-26 Thread Ken Krugler
3.0.23 yesterday i try and fail. which version u use,,,i just not use pro version. From the error below, either your schema.xml file is messed up, or it might be that you still need to uncomment out the lines at the beginning of the web.xml file. These are the ones that say "Uncomment if yo

Re: Need Help on Indexing and Retrieval Strategy

2007-04-26 Thread Jamie Orchard-Hays
Thanks, Yonik. I was leaning that way. I'm trying to make something a bit like a simple XTF browser and trying to understand the best way to index and access by journal issues. (RoR with Solr). Jamie On 4/25/07, Yonik Seeley <[EMAIL PROTECTED]> wrote: On 4/25/07, Jamie Orchard-Hays <[EMAIL PROT

Re: Search with in search results

2007-04-26 Thread Yonik Seeley
Perhaps use filters? q=first search user entered q=second search&fq=first search user entered q=third search&fq=first search user entered&fq=second search Right now, this will only work easily with the standard request handler (because the fq parameter needs queries in lucene syntax). I

Re: Search with in search results

2007-04-26 Thread Traut
Create a second query with IDs from first query? (id:XX id:YY id:ZZ) ? On 4/26/07, Suresh Kannan <[EMAIL PROTECTED]> wrote: How to extend a query type? I need to implement search with in search results without faceted. Suresh -- Best regards, Traut

Re: Solr in Windows

2007-04-26 Thread Bertrand Delacretaz
On 4/26/07, guruprasad <[EMAIL PROTECTED]> wrote: ...Is it only for Linux or can I install Solr on my Windows Desktop too?... Solr itself should run fine on any JVM 1.5, including Windows (and several Solr developers are working on Windows IIUC). Some of our docs refer to auxiliary scripts th

Solr in Windows

2007-04-26 Thread guruprasad
Hi, Just found out about Solr recently. Is it only for Linux or can I install Solr on my Windows Desktop too? Thanks. Regards, Guruprasad -- View this message in context: http://www.nabble.com/Solr-in-Windows-tf3650353.html#a10196493 Sent from the Solr - User mailing list archive at Nabble.com.