Re: Why isn't the DateField implementation of ISO 8601 broader?

2009-10-06 Thread Walter Lewis
On 6 Oct 09, at 5:31 PM, Chris Hostetter wrote: ...your expectations may be different then everyone elses. by requiring that the dates be explicit there is no ambiguity, you are in control of the behavior. The power of some of the other formulas in ISO 8601 is that you don't introduce f

Re: ExtractingRequestHandler unknown field 'stream_source_info'

2009-10-01 Thread Walter Lewis
On 1 Oct 09, at 12:46 PM, Tricia Williams wrote: STREAM_SOURCE_INFO https://www.packtpub.com/article/indexing-data-solr-1.4-enterprise-search-server-2 appears to be a constant from this page: http://lucene.apache.org/solr/api/constant-values.html This has it embedded as an "arr" in the re

host logging options (was Re: Schema validator/debugger)

2007-06-07 Thread Walter Lewis
who has used both Jetty and Tomcat in production (and has come to prefer Tomcat), what are my choices to get the "undefined field xxx" error in the catalina log files (or is it stashed somewhere I'm overlooking?) Walter Lewis

Logging errors from multiple solr instances

2007-06-07 Thread Walter Lewis
stances of indexes such a Bad Idea that supporting this would be leading a fool further astray? Walter Lewis

Re: Using solr on windows

2007-02-14 Thread Walter Lewis
ocalhost/solr/update --data-binary "" Tomcat or apache/tomcat on Windows 2003 is a perfectly adequate servlet container for solr. For that matter, SirsiDynix's Horizon runs Jetty over Windows 2003 in many of their production environments, it's just a bear to configure as a service. Walter Lewis

Re: Fuzzy searching, tildes and solr

2007-01-26 Thread Walter Lewis
at the field types in the example schema would you recommend something like text_lu without the EnglishPorterFilterFactory, or are there other issues I'm overlooking. Walter Lewis (aka Walt Lewi apparently)

Re: Fuzzy searching, tildes and solr

2007-01-25 Thread Walter Lewis
Yonik Seeley wrote: On 1/23/07, Walter Lewis <[EMAIL PROTECTED]> wrote: This is quite possibly a Lucene question rather than a solr one, so my apologies if you think its out of scope. Underlying the solr search, are some very useful Lucene constructs. One of the most powerful, imho,

Fuzzy searching, tildes and solr

2007-01-23 Thread Walter Lewis
This is quite possibly a Lucene question rather than a solr one, so my apologies if you think its out of scope. Underlying the solr search, are some very useful Lucene constructs. One of the most powerful, imho, is the tilde number combination for a "fuzzy" search. In one of my data sets

Re: solr + cocoon problem

2007-01-16 Thread Walter Lewis
[EMAIL PROTECTED] wrote: Any ideas on how to implement a cocoon layer above solr? You're far from the only one approaching solr via cocoon ... :) The approach we took, passes the search parameters to a "solrsearch" stylesheet, the heart of which is a block that embeds the solr results. A fu

Re: MatchAllDocsQuery in solr?

2006-11-21 Thread Walter Lewis
Walter Underwood wrote: I was thinking something similar, maybe _solr:all. At Infoseek, we hardcoded url:http to match all docs. I suppose that different data would yield different responses but a space (" ") works on our data. the other Walter

Re: Sorting facets

2006-11-04 Thread Walter Lewis
Yonik Seeley wrote: On 11/4/06, Walter Lewis <[EMAIL PROTECTED]> wrote: Is there any way to make that sort alphabetical? I have a tag cloud style display in mind. Not currently. Is there any benefit of doing so in the server rather than the client? Only that I don't have to wri

Re: Sorting facets

2006-11-04 Thread Walter Lewis
Yonik Seeley wrote: For facet.field, If you don't put a limit on the number of facets (via facet.limit or f.field.facet.limit) they won't be sorted. ... which sort is by number of matches descending, and for many probably the single most useful. Is there any way to make that sort alphabetical

Sorting facets

2006-11-04 Thread Walter Lewis
. Is the expectation that the code processing the result will apply its own sorts to the facet lists? or is there some other option I'm overlooking? Walter Lewis

Juggling relevance rankings

2006-10-23 Thread Walter Lewis
em) The key is not to produce raw sorts on any one of these, but rather to hint the order based on various weightings of multiple factors. Doable? Walter Lewis