Re: restrictions on distributed search

2008-04-06 Thread Koji Sekiguchi
Thank you, Yonik! Koji - doesn't currently support date faceting - currently only supports sorted field facets

Re: hl.requireFieldMatch and idf

2008-03-29 Thread Koji Sekiguchi
Mike, Thank you for your response. cause: If hl.requireFieldMatch set to true, DefaultSolrHighlight.getQueryScorer() uses QueryScorer(Query,IndexReader,String) constructor in Lucene highlighter. Then the constructor calls getIdfWeightedTerms() to get an array of WeightedTerm. In

hl.requireFieldMatch and idf

2008-03-27 Thread Koji Sekiguchi
Hello, If an index has (many) deleted docs and not optimized, when I set hl.requireFieldMatch=true, highlight doesn't work sometimes. cause: If hl.requireFieldMatch set to true, DefaultSolrHighlight.getQueryScorer() uses QueryScorer(Query,IndexReader,String) constructor in Lucene highlighter.

Re: Slow Highlighting - CopyField maxSize property

2008-03-21 Thread Koji Sekiguchi
Hello Nocolas, This has been in the back of my mind for a time. Can you make a patch for it? I'd like to use it. Thank you, Koji [EMAIL PROTECTED] wrote: Hi all, I would like to propose a new property on copy fields that limit the number of characters that are copied. The use

Re: Disabling the cache?

2007-12-14 Thread Koji Sekiguchi
Just comment out them: !-- filterCache.../ queryResultCache.../ documentCache.../ -- regards, Koji Robert Young wrote: Hi, Is it possible to disable all the caches in Solr. We want to be able to load test our Solr based application but we don't want the caches to affect the results

Re: Opensearch XSLT

2007-11-26 Thread Koji Sekiguchi
Doesn't Microsoft push OpenSearch? http://www.microsoft.com/presspass/press/2007/nov07/11-06SearchServer08ExpressPR.mspx Koji Otis Gospodnetic wrote: Ed, Wunder minght be right. As far as I know, only A9 was pushing OpenSearch. Now that A9 is not *really* around much, I think nobody is

Re: EdgeNGramTokenizer errors in eclipse

2007-07-26 Thread Koji Sekiguchi
Hello, I saw same error. The cause of this problem is there are two lucene-analyzers*.jar files in trunk. $ find . -name lucene-analyzers-*.jar ./client/ruby/solr-ruby/solr/lib/lucene-analyzers-2.2-dev.jar ./lib/lucene-analyzers-2.2.0.jar To eliminate error on eclipse, remove

Re: Solr Update Handler Failes with Some Doc Characters

2007-05-09 Thread Koji Sekiguchi
I'm not sure this is the case, but did you use CDATA section in your XML? Or try to use character reference to represent copyright symbol. I believe it is copy; or #169; . Hope this helps, Koji [EMAIL PROTECTED] wrote: Hi, I run the example using Jetty on Windows 2003 machine. When I

Re: Facet only support english?

2007-05-09 Thread Koji Sekiguchi
+1 on explicit encoding declarations. Yonik Seeley wrote: On 5/9/07, Yonik Seeley [EMAIL PROTECTED] wrote: If you are saving the file in UTF-8 format, then try changing the first line to be this: ?xml version=1.0 encoding=UTF-8? We should probably change the example solrconfig.xml and

Re: question about FederatedSearch on wiki

2007-05-08 Thread Koji Sekiguchi
Chris, Thank you for your answer. With your answer, I'll reread yonik's article and try to understand his idea. Why I'm interested in it because I have a customer and they will use Solr to serve a good many documents. We expect we need to implement federated search function in a year as the

Re: UTF-8 problem with Resin

2007-05-07 Thread Koji Sekiguchi
Ryan, Thank you for committing SOLR-214, but we are still facing the garbled characters problem under Tomcat 5.5.23. I checked the patch, but unfortunately, ContentStreamBase.getReader() works correctly when using stream.* parameters. Without stream.* parameters, contentType is null and

question about FederatedSearch on wiki

2007-05-04 Thread Koji Sekiguchi
Hello, I'm interested in FederatedSearch on wiki: http://wiki.apache.org/solr/FederatedSearch I would like to understand the design concept of this article properly, and I have some questions: 1. What does multi-step mean? e.g. Nice to haves: Retain ability to have complex *multi-step* query

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: about cache

2007-04-26 Thread Koji Sekiguchi
: - queryResultCache- lookups: 78626 hits: 72 hitratio: 0.00 inserts: 78554 evictioins: 1042748 size: 1 Hope this helps, Koji James liu wrote: 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

Re: about cache

2007-04-26 Thread Koji Sekiguchi
: 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 you have

Re: about cache

2007-04-26 Thread Koji Sekiguchi
: 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

Re: Facet Browsing

2007-04-18 Thread Koji Sekiguchi
Hi Jennifer, I can't seem to get things like facet.mincount to work. We had same issue when we used Solr incubator version. Now we are using trunk version of Solr and the issue was gone. Hope this helps, Koji

mainIndex and indexDefaults

2007-03-30 Thread Koji Sekiguchi
Hello, This is a trivial question, but I'm curious about mainIndex and indexDefaults in solrconfig.xml. They imply that I can have a second index other than mainIndex. But SolrConfig instantiates a mainIndex statically. Are there any plan to improve around index setting in the future? Thanks in

stack trace response

2007-03-08 Thread Koji Sekiguchi
Hello, We have a front application server that uses Solr to search our contents. If the front application calls Solr with /select but missing q parameter, Solr returns a stack trace with its response body, while we expect XML response with an error message ( the stack trace in the XML). Is it a

frozen after commit

2006-04-02 Thread Koji Sekiguchi
Hello, I'm studying Solr to see technique of Lucene experts. Seeing SolrServlet.java doPost and doGet, I thought I could call SolrCore execute() and update() methods without servlet container environment. I provided the following Solr program: public class HelloSolr { static SolrCore core

<    1   2   3   4   5   6