Re: Use of solr.ASCIIFoldingFilterFactory

2010-02-07 Thread Sven Maurmann
Hi, you might have run into an encoding problem. If you use Tomcat as the container for Solr you should probably consult the following http://wiki.apache.org/solr/SolrTomcat#URI_Charset_Config Cheers, Sven --On Freitag, 5. Februar 2010 15:41 +0100 Yann PICHOT wrote: Hi, I have def

Embedded Solr problem

2010-02-07 Thread Ranveer Kumar
Hi All, I am still very new to solr. Currently I am facing problem to use EmbeddedSolrServer. following is my code: File home = new File("D:/ranveer/java/solr_home/solr/first"); CoreContainer coreContainer = new CoreContainer(); SolrConfig config = null; config = new SolrConfig(ho

Re: Solr integration with document management systems

2010-02-07 Thread Lukáš Vlček
The good news is that there is a new Apache project starting incubation: Lucene Connector Framework This might be something useful in your case (although as of writing no code available). You can read more info here: http://www.lucidimagination.com/blog/2010/01/20/apache-lucene-connector-framework-

Re: Embedded Solr problem

2010-02-07 Thread Sven Maurmann
Hi, would it be possible that you instantiate a new instance of your SolrServer every time you do a query? You should use the code you quoted in your mail once during initialization to create an instance of SolrServer (the interface being implemented by EmbeddedSolrServer) and subsquently use th

Re: Solr 1.4 - stats page slow

2010-02-07 Thread Peter Wolanin
Yes, we do have some fields (like the creation date) that we use for both sorting and faceting. -Peter On Tue, Jan 26, 2010 at 8:55 PM, Yonik Seeley wrote: > On Tue, Jan 26, 2010 at 8:49 PM, Peter Wolanin > wrote: >> Sorry for not following up sooner- been a busy last couple weeks. >> >> We do

Re: Embedded Solr problem

2010-02-07 Thread Ranveer Kumar
Hi Sven, thanks for reply. yes i notice that every time when request, new instance is created of solr server. could you please guide me to do the same ( initialization to create an instance of SolrServer, once during first request). On Mon, Feb 8, 2010 at 2:11 AM, Sven Maurmann wrote: > Hi, > >

DataImportHandlerException for custom DIH Transformer

2010-02-07 Thread Tommy Chheng
I'm having trouble making a custom DIH transformer in solr 1.4. I compiled the "General TrimTransformer" into a jar. (just copy/paste sample code from http://wiki.apache.org/solr/DIHCustomTransformer) I placed the jar along with the dataimporthandler jar in solr/lib (same directory as the jett

Re: Solr Index size : Java out of memory

2010-02-07 Thread Vijayant Kumar
Hi I was faced the same problem. You can get it rectified by allocating specified memory to the jar process that is running. java -Xmx1024M -Xms1024M -jar start.jar you can specify the amount of memory to the process. -- Thank you, Vijayant Kumar Software Engineer Website Toolbox Inc. http://w

Re: DataImportHandlerException for custom DIH Transformer

2010-02-07 Thread Noble Paul നോബിള്‍ नोब्ळ्
On Mon, Feb 8, 2010 at 9:13 AM, Tommy Chheng wrote: >  I'm having trouble making a custom DIH transformer in solr 1.4. > > I compiled the "General TrimTransformer" into a jar. (just copy/paste sample > code from http://wiki.apache.org/solr/DIHCustomTransformer) > I placed the jar along with the da