Re: index browsing with solr

2007-02-26 Thread Pierre-Yves LANDRON
Solr has a pluggable request handling framework that lets you easily write custom logic and takes care of the xml/json/etc writing for you. Check: http://wiki.apache.org/solr/SolrPlugins#head-7c0d03515c496017f6c0116ebb096e34a872cb61 http://wiki.apache.org/solr/SolrRequestHandler Since the exact

Re: index browsing with solr

2007-02-25 Thread Ryan McKinley
I'm not sure I understand... Ryan, how can I have access to your contribution ? (is it a contribution to Luke or to the solr rest interface ?) Is this implemented yet, and if so, how can I use it ? Thanks. Solr has a pluggable request handling framework that lets you easily write custom logic

Re: index browsing with solr

2007-02-25 Thread Pierre-Yves LANDRON
http://localhost:8983/solr/select?qt=indexinfo&wt=ruby&indent=on Though IndexInfoRequestHandler is practically obsolete with Ryan's "Luke" contribution... isn't that so, Ryan? functionality-wise, yes. I pointed to the IndexInfoRequestHandler because it is the simplest SolrRequestHandler that

Re: index browsing with solr

2007-02-24 Thread Ryan McKinley
On 2/24/07, Erik Hatcher <[EMAIL PROTECTED]> wrote: On Feb 24, 2007, at 6:26 AM, Erik Hatcher wrote: > > On Feb 24, 2007, at 3:36 AM, Pierre-Yves LANDRON wrote: > >>> it will be easy to add. take a look at a simple SolrRequestHandler: >>> >>> http://svn.apache.org/repos/asf/lucene/solr/trunk/s

Re: index browsing with solr

2007-02-24 Thread Erik Hatcher
On Feb 24, 2007, at 6:26 AM, Erik Hatcher wrote: On Feb 24, 2007, at 3:36 AM, Pierre-Yves LANDRON wrote: it will be easy to add. take a look at a simple SolrRequestHandler: http://svn.apache.org/repos/asf/lucene/solr/trunk/src/java/org/ apache/solr/handler/IndexInfoRequestHandler.java t

Re: index browsing with solr

2007-02-24 Thread Erik Hatcher
On Feb 24, 2007, at 3:36 AM, Pierre-Yves LANDRON wrote: it will be easy to add. take a look at a simple SolrRequestHandler: http://svn.apache.org/repos/asf/lucene/solr/trunk/src/java/org/ apache/solr/handler/IndexInfoRequestHandler.java this gets the IndexReader and writes out some stuff.

Re: index browsing with solr

2007-02-24 Thread Pierre-Yves LANDRON
Lucene does it throught the terms method from the class IndexReader, I think : abstract TermEnum terms(Term t) : Returns an enumeration of all terms after a given term. Does an implementation of this method exists in solr ? You can get this functionality from the current faceting imple

Re: index browsing with solr

2007-02-24 Thread Pierre-Yves LANDRON
it will be easy to add. take a look at a simple SolrRequestHandler: http://svn.apache.org/repos/asf/lucene/solr/trunk/src/java/org/apache/solr/handler/IndexInfoRequestHandler.java this gets the IndexReader and writes out some stuff. thanks ! i will look at it. This handler is not accessible f

Re: index browsing with solr

2007-02-23 Thread Yonik Seeley
On 2/23/07, Pierre-Yves LANDRON <[EMAIL PROTECTED]> wrote: I've used solr for two weeks now, and so far it's a really neat solution. I've replaced my previous index searcher app by solr in my current project, but can not find a way to substitute the browseIndex(field, startterm, numberoftermsretu

Re: index browsing with solr

2007-02-23 Thread Ryan McKinley
Does an implementation of this method exists in solr ? i don;t think so. If not, is it difficult to develop new instructions for solr ? where I must start to do so ? it will be easy to add. take a look at a simple SolrRequestHandler: http://svn.apache.org/repos/asf/lucene/solr/trunk/sr

index browsing with solr

2007-02-23 Thread Pierre-Yves LANDRON
Hello everybody, I'm new to this mailing list, so excuse me if my question has already been debated here (I've searched on the web and found nothing about it). I've used solr for two weeks now, and so far it's a really neat solution. I've replaced my previous index searcher app by solr in my