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
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
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
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,
>
>
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
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
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-
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
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