RE: custom response writers

2008-01-29 Thread Sean Laval
Thats what I thought, but I can't add a noarg constructor to my subclass as one doesn't exist in the superclass - TextResponseWriter. All I have done is create a class that extends TextResponseWriter and implements QueryResponseWriter. The only method that is actually implemented is .. public

custom response writers

2008-01-29 Thread Sean Laval
I wonder if anyone can help me. I am trying to create a custom response writer that better meets my needs. I am trying to return json data in a format required by dojo data components. As its json, ie text, I tried subclassing the TextResponseWriter and implementing the QueryResponseWriter inte

RE: Indexing Directly, searching with solr

2008-01-29 Thread Owens, Martin
It doesn't appear to be working: Sending URI: http://text4:8983/solr/@10324_1_155/update Sending Content: This multi core update request to commit the data doesn't change the numDocs of the core :-/ hmm and the response was interesting: Response: 05This response format is experimental. I

Re: custom response writers

2008-01-29 Thread Grant Ingersoll
Can you give more info on the ResponseWriter you are creating? It looks like it is finding the class (i.e. it is not throwing a ClassNotFoundException) but is having trouble constructing it. I believe you need a no argument constructor. -Grant On Jan 29, 2008, at 9:58 AM, Sean Laval wrot

date math syntax

2008-01-29 Thread Brian Whitman
Is there a wiki page or more examples of the "date math" parsing other than this: http://www.mail-archive.com/solr-user@lucene.apache.org/msg01563.html out there somewhere? From an end user query perspective. -b

Re: spellcheckhandler

2008-01-29 Thread Mike Klaas
On 26-Jan-08, at 5:51 PM, anuvenk wrote: Thanks a lot for clearing my doubts. Would you know if the solr wiki is up to date with the documentation for the new features that are being added? I totally rely on the solr wiki documentation for my project. If you may, please send me the files

Re: date math syntax

2008-01-29 Thread Chris Hostetter
: Is there a wiki page or more examples of the "date math" parsing other than : this: http://wiki.apache.org/solr/SolrQuerySyntax ...which links to... http://lucene.apache.org/solr/api/org/apache/solr/util/DateMathParser.html ...which contains several examples of math expressions. It could ce

RE: custom response writers

2008-01-29 Thread Chris Hostetter
: Thats what I thought, but I can't add a noarg constructor to my subclass : as one doesn't exist in the superclass - TextResponseWriter. All I have : done is create a class that extends TextResponseWriter and implements : QueryResponseWriter. The only method that is actually implemented is ..