Re: New operator.

2013-06-18 Thread Yanis Kakamaikis
> > > > > > Start by describing in more detail what problem you are trying to > solve. > > > > > > And how do you expect your users or applications to use this > "operator". > > > Give some examples. > > > > > > Solr and

Re: New operator.

2013-06-17 Thread Roman Chyla
do you expect your users or applications to use this "operator". > > Give some examples. > > > > Solr and Lucene do not have "operators" per say, except in query parser > > syntax, but that is hard-wired into the individual query parsers. > > >

Re: New operator.

2013-06-17 Thread Yanis Kakamaikis
s. > > -- Jack Krupansky > > -Original Message- From: Yanis Kakamaikis > Sent: Sunday, June 16, 2013 2:01 AM > To: solr-user@lucene.apache.org > Subject: New operator. > > > Hi all,I want to add a new operator to my solr. I need that operator > to call my pr

Re: New operator.

2013-06-16 Thread Jack Krupansky
er say, except in query parser syntax, but that is hard-wired into the individual query parsers. -- Jack Krupansky -Original Message- From: Yanis Kakamaikis Sent: Sunday, June 16, 2013 2:01 AM To: solr-user@lucene.apache.org Subject: New operator. Hi all, I want to add a new oper

Re: New operator.

2013-06-16 Thread Mikhail Khludnev
rPlugins#QParserPlugin On Sun, Jun 16, 2013 at 10:01 AM, Yanis Kakamaikis < yanis.kakamai...@gmail.com> wrote: > Hi all, I want to add a new operator to my solr. I need that operator > to call my proprietary engine and build an answer vector to solr, in a way > that this vec

New operator.

2013-06-15 Thread Yanis Kakamaikis
Hi all,I want to add a new operator to my solr. I need that operator to call my proprietary engine and build an answer vector to solr, in a way that this vector will be part of the boolean query at the next step. How do I do that? Thanks