Extending SOLR default/eDisMax query parser with Span queries functionalities

2020-01-07 Thread Kaminski, Adi
Hi, We would like to extend SOLR default (named 'lucene' per: https://lucene.apache.org/solr/guide/6_6/the-standard-query-parser.html) or eDisMax query parser with additional functionality of Lucene Span queries in order to allow via standard parsers to execute position search (Span

Re: Span queries

2017-12-19 Thread Emir Arnautović
ecified slop. However if One of them missing no results comes up. I know > it is kind of phrase query. > > Is there a way to write span queries to ignore few tokens? I would like to > return results even if few tokens are present. Please suggest. > > Regards, > Sreenivas

Span queries

2017-12-18 Thread Sreenivas.T
ified slop. However if One of them missing no results comes up. I know it is kind of phrase query. Is there a way to write span queries to ignore few tokens? I would like to return results even if few tokens are present. Please suggest. Regards, Sreenivas

Postings Format for Span queries on big index

2014-04-02 Thread Gopal Agarwal
Does lucene 4.6 use Lucene41PostingsFormat for Postings.nextdoc() while executing the span queries? When I am debugging the lucene 4.6 test cases for span queries, it is showing that for above nextdoc() call it is utilizing DirectPostingsFormat. My requirement is to run multiple span queries

Highlight span queries

2014-02-13 Thread Puneet Pawaia
Hi I am using SOLR 4.6. I need to highlight span queries. But when I fire a span query, there are no highlight snippets. Is there any highlighter out there that can be used? Regards Puneet

surround parser not working for span queries

2012-11-29 Thread Anirudha Jadhav
I was trying to port surround parer in 4.0 to 3.5 After getting the plugin to work I am not able to get the following results: http://localhost:8983/solr/collection1/select?q=_query_:{!surround}features:(document3w shiny) this works on 4.0 but not on 3.5 with the plugin installed 3.5 query http:

Re: SPAN queries in solr

2012-11-25 Thread Anirudha Jadhav
thanks Erik. Nested Queries help. I'll keep working on the XML Query parser on the side. -Ani On Sun, Nov 25, 2012 at 5:18 PM, Erik Hatcher wrote: > _query_: -- Anirudha P. Jadhav

Re: SPAN queries in solr

2012-11-25 Thread Erik Hatcher
gt; take a look at SOLR-2703, which was committed for 4.0. It provides a Solr >>> wrapper for the surround query parser, which supports span queries. >>> >>> On Fri, Nov 23, 2012 at 3:38 PM, Anirudha Jadhav >> wrote: >>> >>>

Re: SPAN queries in solr

2012-11-25 Thread Anirudha Jadhav
t SOLR-2703, which was committed for 4.0. It provides a Solr > > wrapper for the surround query parser, which supports span queries. > > > > On Fri, Nov 23, 2012 at 3:38 PM, Anirudha Jadhav > wrote: > > > >> What is the best way to use span queries in solr ?

Re: SPAN queries in solr

2012-11-23 Thread Anirudha Jadhav
Can this be made to work with solr 3.5 ? i will give it a try. Thanks On Nov 23, 2012, at 17:28, simon wrote: > take a look at SOLR-2703, which was committed for 4.0. It provides a Solr > wrapper for the surround query parser, which supports span queries. > > On Fri, Nov 23,

Re: SPAN queries in solr

2012-11-23 Thread simon
take a look at SOLR-2703, which was committed for 4.0. It provides a Solr wrapper for the surround query parser, which supports span queries. On Fri, Nov 23, 2012 at 3:38 PM, Anirudha Jadhav wrote: > What is the best way to use span queries in solr ? > > I see https://issues.apache

SPAN queries in solr

2012-11-23 Thread Anirudha Jadhav
What is the best way to use span queries in solr ? I see https://issues.apache.org/jira/browse/SOLR-839 which enables the XML Query parser that supports span queries. -- Anirudha P. Jadhav

Re: SOLR Support for Span Queries

2011-08-05 Thread Ahmet Arslan
> How does one issue span queries in > SOLR (Span, SpanNear, etc)? I've > done a bit of research and it seems that these are not > supported. It > would seem that I need to implement a QueryParserPlugin to > accomplish > this. Is this the correct path? Surely this ha

SOLR Support for Span Queries

2011-08-04 Thread Joshua Harness
How does one issue span queries in SOLR (Span, SpanNear, etc)? I've done a bit of research and it seems that these are not supported. It would seem that I need to implement a QueryParserPlugin to accomplish this. Is this the correct path? Surely this has been done before. Does anybody have