I tried another one: fieldX:["" TO *] and it returns articles with the field filled :), so I guess I'm getting there. But I tried also fieldX:[" " TO *] and get a few more results that the first one...
Is there a real difference between these, and also if the results are really all docs with field not empty? Thanks again, Frederico -----Original Message----- From: Frederico Azeiteiro [mailto:frederico.azeite...@cision.com] Sent: quinta-feira, 4 de Fevereiro de 2010 10:55 To: solr-user@lucene.apache.org Subject: RE: query all filled field? Thanks, but still no luck with that: *:* AND -fieldX:[* TO *] - returns 0 docs fieldX:(a*) - return docs, so I'm sure that there's docs with this field filled. Any other ideias what could be wrong? Frederico -----Original Message----- From: Lance Norskog [mailto:goks...@gmail.com] Sent: quinta-feira, 4 de Fevereiro de 2010 05:38 To: solr-user@lucene.apache.org Subject: Re: query all filled field? Queries that start with minus or NOT don't work. You have to do this: *:* AND -fieldX:[* TO *] On Wed, Feb 3, 2010 at 5:04 AM, Frederico Azeiteiro <frederico.azeite...@cision.com> wrote: > Hum, strange.. I reindexed some docs with the field corrected. > > Now I'm sure the field is filled because: > > "fieldX:(*a*)" returns docs. > > But "fieldX:[* TO *]" is returning the same as "*.*" (all results) > > I tried with "-fieldX:[* TO *]" and I get no results at all. > > I wonder if someone has tried this before with success? > > The field is indexed as string, indexed=true and stored=true. > > Thanks, > Frederico > > -----Original Message----- > From: Ahmet Arslan [mailto:iori...@yahoo.com] > Sent: quarta-feira, 3 de Fevereiro de 2010 11:48 > To: solr-user@lucene.apache.org > Subject: Re: query all filled field? > > >> Is it possible to query some field in order to get only not >> empty >> documents? >> >> >> >> All documents where field x is filled? > > Yes. q=x:[* TO *] will bring documents that has non-empty x field. > > > > -- Lance Norskog goks...@gmail.com