Re: [POLL] How do you (like to) do logging with Solr

2011-05-17 Thread openvictor Open
Wow... Nobody is using the one with Jetty ? It was a good option for me because I like to have separate processes for different things : A tomcat server for all the webapps of my server, Jetty Server with Solr and a drools server. Was it a stupid idea from the beginning ? So my choice : [ ] I al

Re: Using autocomplete with the new Suggest component

2011-04-15 Thread openvictor Open
ed. > Sometimes, I had more results, sometimes less. > > Even so, I would really be interested in your resources using Terms and > shingles to implement auto-complete. > I am myself a French student and it could help me improve the solution of > one of my project. > > Best

Using autocomplete with the new Suggest component

2011-04-15 Thread openvictor Open
Hi everybody, Recently I implemented an autocomplete mechanism for my website using a custom TermsComponent. I was quite happy with that because it also enables me to do a Google-like feature where complete sentences where suggested to the user when he typed in the search field. I used Shingles t

Re: Solrj performance bottleneck

2011-04-04 Thread openvictor Open
Dear Rahul, Stefan has the right solution. the autosuggest must be checked both from Javascript and your backend. For javascript there are some really nice tools to do that such as Jquery which implements a auto-suggest with a tunable delay. It has also highlighting, you can add additional informa

Re: Searching all terms - SolrJ

2011-03-01 Thread openvictor Open
Great ! Thank you very much Chris, it will come handy ! Best regards, Victor 2011/3/1 Chris Hostetter > > : Yes but I want to leave the choice to the user. > : > : He can either search all the terms or just some. > : > : Is there any more flexible solution ? Even if I have to code it by hand ?

Re: Searching all terms - SolrJ

2011-03-01 Thread openvictor Open
Yes but I want to leave the choice to the user. He can either search all the terms or just some. Is there any more flexible solution ? Even if I have to code it by hand ? 2011/3/1 Ahmet Arslan > > --- On Wed, 3/2/11, openvictor Open wrote: > > > From: openvictor Op

Searching all terms - SolrJ

2011-03-01 Thread openvictor Open
Dear all, First I am sorry if this question has already been asked ( I am sure it was...) but I can't find the right option with solrj. I want to query only documents that contains ALL query terms. Let me take an example, I have 4 documents that are simple sequences ( they have only one field :

Re: Using terms and N-gram

2011-02-04 Thread openvictor Open
sematext.com/ :: Solr - Lucene - Nutch > Lucene ecosystem search :: http://search-lucene.com/ > > > > - Original Message > > From: openvictor Open > > To: solr-user@lucene.apache.org > > Sent: Thu, February 3, 2011 10:15:47 AM > > Subject: Re:

Re: Using terms and N-gram

2011-02-03 Thread openvictor Open
Okay so as suggested Shingle works perfectly well for what I need ! Thank you Erick 2011/2/3 openvictor Open > Thank you for these inputs. > > I was silly asking for ngrams because I already knew it. I think I was > tired yesterday... > > Thank you Eric Erickson, once again

Re: Solr for finding similar word between two documents

2011-02-03 Thread openvictor Open
Rohan : what you want to do can be done with quite little effort if your document has a limited size (up to some Mo) with common and basic structures like Hasmap. Do you have any additional information on your problem so that we can give you more useful inputs ? 2011/2/3 Gora Mohanty > On Thu,

Re: Using terms and N-gram

2011-02-03 Thread openvictor Open
#x27;re stopwords. > > Have you looked at "shingles"? See: > > http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.ShingleFilterFactory > Best > Erick > > > On Thu, Feb 3, 2011 at 10:15 AM, openvictor Open >wrote: > > > Thank you, I will do that and hopefu

Re: Using terms and N-gram

2011-02-03 Thread openvictor Open
Thank you, I will do that and hopefuly it will be handy ! But can someone explain me difference between CommonGramFIlterFactory et NGramFilterFactory ? ( Maybe the solution is there) Thank you all, best regards 2011/2/3 Grijesh > > Use analysis.jsp to see what happening at index time and query

Re: Terms and termscomponent questions

2011-02-03 Thread openvictor Open
gt; attempts, because I sure don't see how the concatenated terms would be > in this index given the definition you've posted. > > And if none of that works, well, we'll try something else .. > > Best > Erick > > On Tue, Feb 1, 2011 at 10:07 AM, openvictor Open &

Using terms and N-gram

2011-02-02 Thread openvictor Open
Dear all, I am trying to implement an autocomplete system for research. But I am stuck on some problems that I can't solve. Here is my problem : I give text like : "the cat is black" and I want to explore all 1 gram to 8 gram for all the text that are passed : the, cat, is, black, the cat, cat is

Re: Solr for noSQL

2011-02-01 Thread openvictor Open
Hi All I don't know if it answers any of your question but if you are interested by that check out : Lucandra ( Cassandra + Lucene) 2011/2/1 Steven Noels > On Tue, Feb 1, 2011 at 11:52 AM, Upayavira wrote: > > > > > > Apologies if my "nothing funky" sounded like you weren't doing cool > > st

Re: Terms and termscomponent questions

2011-02-01 Thread openvictor Open
is happening somewhere > else. > > Bottom line: Solr will not concatenate terms like this unless you tell it > to, > so I suspect you're telling it to, you just don't realize it ... > > Best > Erick > > On Tue, Feb 1, 2011 at 1:33 AM, openvictor Open >wr

Terms and termscomponent questions

2011-01-31 Thread openvictor Open
Dear Solr users, I am currently using SolR and TermsComponents to make an auto suggest for my website. I have a field called p_field indexed and stored with type="text" in the schema xml. Nothing out of the usual. I feed to Solr a set of words separated by a coma and a space such as (for two docu