Re: search query text field with Comma

2014-10-06 Thread Sven Maurmann
Dear Ravi, this is most likely the consequence of the analyzer-configuration: If you tokenize your text without removing the commas (and other punctuation), the comma right after the word "Series" will be part of the resulting token. You should check the configuration and make sure you use the a

Re: "no such core" error with EmbeddedSolrServer

2012-01-06 Thread Sven Maurmann
Hi, from your snippets the reason is not completely clear. There are a number of reasons for not starting up the server. For example in case of a faulty configuration of the core (solrconfig.xml, schema.xml) the core does not start and you get the reported error. Best, Sven Am 06.01.2012 um

Re: Configuring RequestHandler in solrconfig.xml OR in the Servlet code using SolrJ

2010-06-22 Thread Sven Maurmann
Hi, there are reasons for both options. Usually it is a good idea to put the default configuration into the solrconfig.xml (and even fix some of the configuration) in order to have simple client-side code. But sometimesit is necessary to have some flexibility for the actual query. In this si

Re: solr connection question

2010-07-08 Thread Sven Maurmann
Hi, Solr runs as a Web application. The requests you most probably mean are just HTTP-requests to the underlying container. Internally each request is processed against the Lucene index, usually being a file- based one. Therefore there are no connections like in a database application, where you

Re: analyzers in schema

2012-05-07 Thread Sven Maurmann
Dear Gary, yes, you are right. Best, Sven Am 07.05.2012 um 17:08 schrieb G.Long: > Hi :) > > In the schema.xml file, If an analyzer is specified for a fieldtype but > without the attribute type="index" or type="query", does it mean the analyzer > is used by default for both cases? > > Ga

Re: Language analyzers

2012-05-16 Thread Sven Maurmann
Hi! Could you explain this a little more detailed? Thanks, Sven Am 16.05.2012 um 16:17 schrieb anarchos78: > Hello, > > Is it possible to use two language analyzers for one fieldtype. Lets say > Greek and English (for indexing and querying) > > Thanks > > -- > View this message in context

Re: solr finds allways all documents

2012-08-20 Thread Sven Maurmann
Dear Robert, could you give me a little more information about your setting? For example the complete solrconfig.xml and the complete schema.xml would definitely help. Best, Sven -- kippdata informationstechnologie GmbH Sven Maurmann Tel: 0228 98549 -12 Bornheimer Str. 33a

RE: Problem comitting on 40GB index

2010-01-13 Thread Sven Maurmann
information you may want to refer to the paper <http://java.sun.com/j2se/reference/whitepapers/memorymanagement_whitepaper.pdf> which points you to a few other utilities related to GC. Best, Sven Maurmann --On Mittwoch, 13. Januar 2010 18:03 + Frederico Azeiteiro wrote: The hanging

Re: Need help Migrating to Solr

2010-01-14 Thread Sven Maurmann
lr. Thanks and Regards Abin Mathew -- Grant Ingersoll http://www.lucidimagination.com/ Search the Lucene ecosystem using Solr/Lucene: http://www.lucidimagination.com/search -- kippdata informationstechnologie GmbH Sven Maurmann Tel: 0228 98549 -12 Bornheimer Str. 33a

Re: Problem with text field in Solr

2010-01-15 Thread Sven Maurmann
. ** -- DEEPAK AGRAWAL +91-9379433455 GOOD LUCK. -- kippdata informationstechnologie GmbH Sven Maurmann Tel: 0228 98549 -12

Re: Fundamental questions of how to build up solr for huge portals

2010-01-16 Thread Sven Maurmann
ing, using the whole features of lucene - like tagging, facetting and so on...) We are thankful of every suggestions :) Thanks, Peter -- kippdata informationstechnologie GmbH Sven Maurmann Tel: 0228 98549 -12 Bornheimer Str. 33a Fax: 0228 98549 -50 D-53111 B

Re: multi field search

2010-01-18 Thread Sven Maurmann
Hi, you might want to use the Dismax-Handler. Sven --On Monday, January 18, 2010 02:58:09 PM +0100 Lukas Kahwe Smith wrote: Hi, I realize that I can copy all fields together into one multiValue field and set that as the defaultSearchField. However in that case I cannot leverage the variou

Re: Solr under tomcat - UTF-8 issue

2010-01-23 Thread Sven Maurmann
Hi, I did not read the original mail, but for the UTF-8 issue with Tomcat you might consult the url http://wiki.apache.org/solr/SolrTomcat The relevant piece of information is under "URI Charset Config": *** quote *** Edit Tomcat's conf/server.xml and add the following attribute to the correct

Re: Index gets deleted after commit?

2010-01-25 Thread Sven Maurmann
DIH is the DataImportHandler. Please consult the two URLs http://wiki.apache.org/solr/DataImportHandler and http://wiki.apache.org/solr/DataImportHandlerFaq for further information. Cheers, Sven --On Monday, January 25, 2010 11:33:59 AM +0200 Bogdan Vatkov wrote: Hi Amit, What is D

Re: Solr wiki link broken

2010-01-26 Thread Sven Maurmann
Hi, you might want to try the link called Frontpage on the generic wiki page. But well, this seems to be kind of broken for some locales. Regards, Sven --On Dienstag, 26. Januar 2010 01:23 -0500 Teruhiko Kurosaka wrote: In http://lucene.apache.org/solr/ the wiki tab and "Docs (wiki)"

Re: Solr wiki link broken

2010-01-26 Thread Sven Maurmann
Hi Erik, one observation from me who is using the wiki from a browser living in a non-US locale: I usually get the standard wiki frontpage (in German) and not (!) the Solr-Frontpage I get, if I use a US locale (or click on the link FrontPage). B.t.w I know that this does not strictly belong to t

Re: Basic questions about Solr cost in programming time

2010-01-29 Thread Sven Maurmann
Hi! Of course the answer depends (as usually) very much on the features you want to realize. But Solr can be set up very fast. When we created our first prototype, it took us about a week to get it running with spell phoneme search, spell checking, facetting - and even collapsing (using the famou

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

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: Embedded Solr problem

2010-02-08 Thread Sven Maurmann
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, would it be pos

Re: Indexing / querying multiple data types

2010-02-08 Thread Sven Maurmann
Hi, could you be a little more precise about your configuration? It may be much easier to answer your question then. Cheers, Sven --On Montag, 8. Februar 2010 17:39 + stefan.ma...@bt.com wrote: OK - so I've now got my data-config.xml sorted so that I'm pulling in the expected number o

Re: Need a bit of help, Solr 1.4: type "text".

2010-02-11 Thread Sven Maurmann
Hi, the parameter for WordDelimiterFilterFactory is catenateAll; you should set it to 1. Cheers, Sven --On Mittwoch, 10. Februar 2010 16:37 -0800 Yu-Shan Fung wrote: Check out the configuration of WordDelimiterFilterFactory in your schema.xml. Depending on your settings, it's probably

Re: dismax and multi-language corpus

2010-02-11 Thread Sven Maurmann
Hi, this is correct. Usually one does not know, how a stemmer - or other language specific filters - behaves in the context of a foreign language. But there is an exception that sometimes comes to the rescue: If one has a stable dictionary of terms in all the languages of interest, then one migh

Re: How to reindex data without restarting server

2010-02-11 Thread Sven Maurmann
Hi, restarting the Solr server wouldn't help. If you want to re-index your data you have to pipe it through the whole process again. In your case it might be a good idea to consider having several cores holding the different schema definitions. This will not save you from getting the original da

Re: HTMLStripCharFilterFactory configuration problem

2010-04-14 Thread Sven Maurmann
informationstechnologie GmbH Sven Maurmann Tel: 0228 98549 -12 Bornheimer Str. 33a Fax: 0228 98549 -50 D-53111 Bonnsven.maurm...@kippdata.de HRB 8018 Amtsgericht Bonn / USt.-IdNr. DE 196 457 417 Geschäftsführer: Dr. Thomas Höfer, Rainer Jung, Sven Maurmann

Re: is solr ignored my filters ?

2010-04-19 Thread Sven Maurmann
Hi, could you provide at least some information? Usually you can be 100% sure that Solr uses the configuration it is provided with. Cheers, Sven --On Montag, 19. April 2010 05:53 -0800 stockii wrote: hey. sry for this ... stupid question ;) when i perform an import from my data is use

Re: Build query programmatically with lucene, but issue to solr?

2010-05-28 Thread Sven Maurmann
Hi Pillip, could you give me some more information of your environment? A first idea that comes to my mind is to use the SearchComponents for the solution of your problem. You could either replace the whole QueryComponent (not re- commended) or write a (probably small) SearchComponent that create