Re: Solr 8.4.1, NOT NULL query not working on plong & pint type fields (fieldname:* )

2020-11-26 Thread Deepu
Hi Shawn, Thanks for taking time and replay. Thanks, Deepu On Thu, Nov 26, 2020 at 10:53 PM Shawn Heisey wrote: > On 11/25/2020 10:42 AM, Deepu wrote: > > We are in the process of migrating from Solr 5 to Solr 8, during testing > > identified that "Not null" queries on plong & pint field types

Re: Solr 8.4.1, NOT NULL query not working on plong & pint type fields (fieldname:* )

2020-11-26 Thread Shawn Heisey
On 11/25/2020 10:42 AM, Deepu wrote: We are in the process of migrating from Solr 5 to Solr 8, during testing identified that "Not null" queries on plong & pint field types are not giving any results, it is working fine with solr 5.4 version. could you please let me know if you have suggestions

Solr 8.4.1, NOT NULL query not working on plong & pint type fields (fieldname:* )

2020-11-25 Thread Deepu
Dear Team, We are in the process of migrating from Solr 5 to Solr 8, during testing identified that "Not null" queries on plong & pint field types are not giving any results, it is working fine with solr 5.4 version. could you please let me know if you have suggestions on this issue? Thanks

Creating summary snippets for a null query

2014-07-10 Thread Michael Keeling
Hello, I'm moving to Solr from another search engine that would always return a snippet even for any empty/null search. In the case of an empty/null search, the first N characters would be returned as the summary snippet. What would be the best way to configure Solr and index content so that at

Re: Creating summary snippets for a null query

2014-07-10 Thread Ahmet Arslan
Hi, Please see hl.alternateField and hl.maxAlternateFieldLength parameters. http://wiki.apache.org/solr/HighlightingParameters#hl.alternateField Ahmet On Friday, July 11, 2014 12:03 AM, Michael Keeling michael.keel...@gmail.com wrote: Hello, I'm moving to Solr from another search engine

NOT NULL Query

2008-10-15 Thread John E. McBride
Hello All, I need to run a query which asks: field = NOT NULL should this perhaps be done with a filter? I can't find out how to do NOT NULL from the documentation, would appreciate any advice. Thanks, John

Re: NOT NULL Query

2008-10-15 Thread Ryan McKinley
try: field:[* TO *] On Oct 15, 2008, at 9:44 AM, John E. McBride wrote: Hello All, I need to run a query which asks: field = NOT NULL should this perhaps be done with a filter? I can't find out how to do NOT NULL from the documentation, would appreciate any advice. Thanks, John

Re: NOT NULL Query

2008-10-15 Thread mike topper
I think you can do field:[ TO *] to grab everything that is not null. -Mike John E. McBride wrote: Hello All, I need to run a query which asks: field = NOT NULL should this perhaps be done with a filter? I can't find out how to do NOT NULL from the documentation, would appreciate any