Re: Features not present in Solr

2010-03-21 Thread MitchK
Srikanth, I don't know anything about Endeca, so I can't compare Solr to it. However, I know Solr is powerful. Very powerful. So, maybe you should tell us more about your needs to get a good answer. As a response to your second question: You should not expect that Solr is a database. It is an i

Re: Facetting with Synonyms

2010-03-21 Thread MitchK
Hi Otis, thank you for responsing. Hmm, since I am not omniscient, this seems to be no way for me, because this would mean I have to know all about the artist at index-time. But your response makes me thinking about an idea: A synonym-mapper. The syonym-mapper should work on the responsed facet

Chunked streaming upload to Solr

2010-03-21 Thread Lance Norskog
I would like to upload data to Solr for indexing, in chunks, in one HTTP POST request. Is this possible? What exactly should I set as the client socket parameters? What I'm getting is that with the default parameters, the first write adds a Content-Length matching the size of the first chunk. Solr

Re: Facetting with Synonyms

2010-03-21 Thread Otis Gospodnetic
Hi Mitch, You asked how others would solve this problem. I would try to normalize the data before indexing it. In other words, I'd clean it up myself to avoid GIGO situation. Otis Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch Hadoop ecosystem search :: http://search-hadoop.co

Re: Features not present in Solr

2010-03-21 Thread Gora Mohanty
On Mon, 22 Mar 2010 05:12:06 +0530 Srikanth B wrote: > Thanks but Im looking for answers on the functional and technical > front. [...] Yours is a very broad question, and the details of the answers probably depend on the domain that you are trying to use Solr in. Solr is extensively documented

Re: Weired behaviour for certain search terms

2010-03-21 Thread Akash Sahu
The search is now working for those terms. I did the following changes. In schema file, I replace with . Ahmet Arslan wrote: > > >> I tired adding &hl.maxAnalyzedChars=-1 to my search >> query but it didnt >> helped. >> Just wanted to know if there are limitations on the certain >> sea

Re: Features not present in Solr

2010-03-21 Thread Srikanth B
Thanks but Im looking for answers on the functional and technical front. On 3/20/10, Israel Ekpo wrote: > > One feature that is not available in Solr is any licensing fees and fine > print. > > Also you should not expect to pay in order to use Solr. > > On Fri, Mar 19, 2010 at 11:16 PM, Srikanth

dismax and q.op

2010-03-21 Thread Mark Fletcher
Hi, I am using dismax handler. I have it set up in my solrconfig.xml. I have *not* used default="true" while setting it up (the standard still has default="true") *I haven't mentioned value for mm* In my schema.xml I have set the default operator to be AND. When I query I use the following in m

Re: trimfilterfactory on string fieldtype?

2010-03-21 Thread Ahmet Arslan
> Can the trim filter factory work on > string fieldtypes? No. String field type (solr.StrField) is not analyzed. You can use charfilter,tokenizer,tokenfilter with solr.TextField. You can use this (TrimmedString) field definition:

Re: related search

2010-03-21 Thread Andrew Greenburg
On Sun, Mar 21, 2010 at 4:30 AM, Suram wrote: > > Thanx lot Ahmet Arslan > > How can make query to get synonym value ,any suggestion You need to apply the SynonymFilterFactory to your queries as well.

use termscomponent like spellComponent ?!

2010-03-21 Thread stocki
hello. i play with solr but i didn`t find the perfect solution for me. my goal is a search like the amazonsearch from the iPhoneApp. ;) it is possible to use the TermsComponent like the SpellComponent ? So, that works termsComp with more than one single Term ?! i got these 3 docs with the na

Solr crashing while extracting from very simple text file

2010-03-21 Thread Ross
Hi all I'm trying to import some text files. I'm mostly following Avi Rappoport's tutorial. Some of my files cause Solr to crash while indexing. I've narrowed it down to a very simple example. I have a file named test.txt with one line. That line is the word XXBLE and nothing else This is the c

Encoding problem with ExtractRequestHandler for HTML indexing

2010-03-21 Thread Ukyo Virgden
Hi, I'm trying to index HTML documents with different encodings. My html are either in win-12XX, ISO-8859-X or UTF8 encoding. handler correctly parses all html in their respective encodings and indexes. However on the web interface I'm developing I enter query terms in UTF-8 which naturally does n

Facetting with Synonyms

2010-03-21 Thread MitchK
Hello out there, I got a little problem: Users take care about what will be indexed and what not. Sometimes there is a little problem: For example: The artists "Snaga & Pillath" are similar to "S & P". When I Index the document, I can solve this problem with the help of a SynonymFilter. However,

Re: Boundary match as part of query language?

2010-03-21 Thread David Smiley @MITRE.org
By the way, you'll probably want to shingle or use CommonGrams (with _BEGIN & _END being "common") for acceptable performance. I'm wondering, if Lucene's new payload features might provide an alternative mechanism to mark the first and last term. ~ David Smiley hossman wrote: > > > : Now, I

Re: related search

2010-03-21 Thread Suram
Thanx lot Ahmet Arslan How can make query to get synonym value ,any suggestion -- View this message in context: http://old.nabble.com/related-search-tp27933778p27974649.html Sent from the Solr - User mailing list archive at Nabble.com.