RE: Solr statistics of top searches and results returned

2009-05-26 Thread Plaatje, Patrick
trick -Original Message- From: rswart [mailto:rjsw...@gmail.com] Sent: dinsdag 26 mei 2009 16:42 To: solr-user@lucene.apache.org Subject: RE: Solr statistics of top searches and results returned If this is is not done in an async way wouldn't this have a serious performance impact?

RE: Solr statistics of top searches and results returned

2009-05-25 Thread Plaatje, Patrick
Hi all, I created a script that uses a Solr Search Component, which hooks into the main solr core and catches the searches being done. After this it tokenizes the search and send both the tokenized as well as the original query to another Solr core. I have not written a factory for this, but if

RE: Solr statistics of top searches and results returned

2009-05-20 Thread Plaatje, Patrick
10:33 To: solr-user@lucene.apache.org Subject: Re: Solr statistics of top searches and results returned On Wed, May 20, 2009 at 1:31 PM, Plaatje, Patrick < patrick.plaa...@getronics.com> wrote: > > At the moment Solr does not have such functionality. I have written a > plugin f

RE: Solr statistics of top searches and results returned

2009-05-20 Thread Plaatje, Patrick
Hi, At the moment Solr does not have such functionality. I have written a plugin for Solr though which uses a second Solr core to store/index the searches. If you're interested, send me an email and I'll get you the source for the plugin. Regards, Patrick -Original Message- From: solr

Getting request object within search component

2008-12-24 Thread Plaatje, Patrick
Hi All, I developed my own custom search component, in which I need to get the requestors ip-address. But I can't seem to find a request object from where I can get this string, ideas anyone? Best, Patrick

RE: Change in config file (synonym.txt) requires container restart?

2008-12-19 Thread Plaatje, Patrick
Hi , I'm wondering if you could not implement a custom filter which reads the file realtime (you might even keep the create synonym map in memory for a predefined time). This then doesn't need a restart of the container. Best, Patrick -Original Message- From: Shalin Shekhar Mangar [mail

RE: php client. json communication

2008-12-16 Thread Plaatje, Patrick
possible to get json response.but search is only possible via xml queries. Plaatje, Patrick wrote: > Or have a look at the Wiki, probably a better way to start: > > http://wiki.apache.org/solr/SolPHP > > Best, > > Patrick > > -

RE: php client. json communication

2008-12-16 Thread Plaatje, Patrick
with this cause I need to use solr with javascript directly, bypassing application and directly searching stuff. Plaatje, Patrick wrote: > Hi Julian, > > I'm a bit confused. The indexing is indeed being done through XML, but > in searching it is possible to get JSON results by usi

RE: checkout 1.4 snapshot

2008-12-16 Thread Plaatje, Patrick
Sorry all, Wrong url in the post, right url should be: http://svn.apache.org/repos/asf/lucene/solr/ Best, Patrick -Original Message- From: Plaatje, Patrick [mailto:patrick.plaa...@getronics.com] Sent: dinsdag 16 december 2008 22:19 To: solr-user@lucene.apache.org Subject: RE

RE: checkout 1.4 snapshot

2008-12-16 Thread Plaatje, Patrick
Hi, You can find the SVN repository here: http://www.apache.org/dev/version-control.html#anon-svn I'm not sure if this represent the 1.4 version, but as being the trunk it's the latest version. Best, Patrick -Original Message- From: roberto [mailto:miles.c...@gmail.com] Sent: dinsdag

Using DIH, getting exception

2008-12-16 Thread Plaatje, Patrick
Hi All, I'm trying to use the Data import handler, with the data config below (snippet): The variables are all good (userrname+password, etc), but I'm getting the following exception, any thoughts? org.apache.solr.handler.dataimport.DataImportHandlerException: No dataSource :null availabl

RE: php client. json communication

2008-12-16 Thread Plaatje, Patrick
Or have a look at the Wiki, probably a better way to start: http://wiki.apache.org/solr/SolPHP Best, Patrick -- Just trying to help http://www.ipros.nl/ -- -Original Mes

RE: Keyword extraction

2008-11-27 Thread Plaatje, Patrick
ent;) On a general note, if you want to "really" understand how the MLT works, take a look at the wiki or read this thorough blog post: http://cephas.net/blog/2008/03/30/how-morelikethis-works-in-lucene/ Regards, Aleksander On Wed, 26 Nov 2008 14:41:52 +0100, Plaatje, Patrick <[E

RE: Keyword extraction

2008-11-26 Thread Plaatje, Patrick
at the end of your request url, to see debug output on how the query is parsed and if/how any documents are matched against your query. Hope this helps. Cheers, Aleksander On Wed, 26 Nov 2008 13:08:30 +0100, Plaatje, Patrick <[EMAIL PROTECTED]> wrote: > Hi Aleksander, > > Tha

RE: Keyword extraction

2008-11-26 Thread Plaatje, Patrick
similar documents just by searching for > documents with similar title (more like this doesn't work in this case). > > I hope it helps, > Best Regards, > Vitalie Scurtu > --- On Wed, 11/26/08, Plaatje, Patrick <[EMAIL PROTECTED]> > wrote: > From: Plaatje, Patrick

RE: Keyword extraction

2008-11-26 Thread Plaatje, Patrick
Hi All, as an addition to my previous post, no interestingTerms are returned when i execute the folowing url: http://localhost:8080/solr/select/?q=id=18477975&mlt.fl=text&mlt.interes tingTerms=list&mlt=true&mlt.match.include=true I get a moreLikeThis list though, any thoughts? Best, Patri

Keyword extraction

2008-11-25 Thread Plaatje, Patrick
Hi all, Strugling with a question I recently got from a collegue: is it possible to extract keywords from indexed content? In my opinion it should be possible to find out on what words the ranking of the indexed content is the highest (Lucene or Solr), but have no clue where to begin. Anyone havi