Home | About | Sematext search-lucene.com search-hadoop.com
clear query|facets|time Search criteria: SchemaField.   Results from 81 to 90 from 399 (0.309s).
Loading phrases to help you
refine your search...
match any field value? field:*? - Solr - [mail # user]
...Is it possible to search for all documents with a field?  I have documents with a bunch of fields and a field for 'error' (string field with the actual error).  Is it possible do search...
... for documents that have an error?  Considering the new *:* syntax, i would guess something like "error:*"  Do i need a separate boolean field that marks 'hasErrors' or something like that?  If so...
[+ show more]
   Author: Ryan McKinley, 2007-03-16, 22:17
[LUCENE-2665] Rework FieldCache to be more flexible/general - Lucene - [issue]
...The existing FieldCache implementation is very rigid and does not allow much flexibility.  In trying to implement simple features, it points to much larger structural problems. This patch...
... aims to take a fresh approach to how we work with the FieldCache. ...
http://issues.apache.org/jira/browse/LUCENE-2665    Author: Ryan McKinley, 2011-11-14, 22:26
indexing null values? - Solr - [mail # dev]
...", null, 1.0f );     Document out = DocumentBuilder.toDocument( doc, core.getSchema() );  throws an exception:     "unknown field 'name'"  Fixing it is easy, but I'm not clear what the semantics...
.../java/org/apache/solr/update/DocumentBuilder.java ================================================================== (revision 564002) +++ src/java/org/apache/solr/update/DocumentBuilder.java        (working  copy) @@ -188,8 +188,10 @@         SchemaField[] destArr = schema.getCopyFields(name);          // load...
[+ show more]
   Author: Ryan McKinley, 2007-08-08, 19:56
[LUCENE-4175] Include BBox Spatial Strategy - Lucene - [issue]
...This is an approach to indexing bounding boxes using 4 numeric fields (xmin,ymin,xmax,ymax) and a flag to say if it crosses the dateline. This is a modification from the Apache 2.0 code...
http://issues.apache.org/jira/browse/LUCENE-4175    Author: Ryan McKinley, 2012-09-20, 06:00
Re: Is solrj 3.3.0 ready for field collapsing? - Solr - [mail # user]
...patches are always welcome!   On Tue, Jul 5, 2011 at 3:04 PM, Yonik Seeley  wrote:...
   Author: Ryan McKinley, 2011-07-05, 23:17
[SOLR-2433] Make FieldProperties bit masks protected - Solr - [issue]
... static int STORED              = 0x00000004;   final static int BINARY              = 0x00000008;   final static int OMIT_NORMS          = 0x00000010;   ... to set these fields explicitly...
....  This is important for complex fields like LatLonType and poly fields in general...
http://issues.apache.org/jira/browse/SOLR-2433    Author: Ryan McKinley, 2011-06-03, 17:44
[SOLR-2831] BinaryResponseWriter does not read/write IndexableFields correctly - Solr - [issue]
...When adding a SolrDocument with IndexableFields for values to a response, the values are written using toString() rather then the real value.  I noticed this issue using the new RealtimeGetComponent.  ...
http://issues.apache.org/jira/browse/SOLR-2831    Author: Ryan McKinley, 2011-10-14, 04:55
Multiple copyFields as field boost hack? - Solr - [mail # user]
...I have an app where I want dismax style automatic field boosting (for  the title), but also want to expose lucene query syntax (phrase, range, etc)  The default search field for my schema...
... is "fulltext".  I am copying all  the relevant fields but want "Boston" in the title to be worth more then  "Boston" in the contributor.  If I put:           Does this essentially boost title^3 within...
[+ show more]
   Author: Ryan McKinley, 2007-05-28, 19:18
Re: spellchecking multiple fields? - Solr - [mail # user]
...and the caveat that all fields would need to be declared in the   solrconfig.xml (or get used for both fields)  this could work...  would also need to augment the response with the   name...
   Author: Ryan McKinley, 2008-07-16, 13:47
spellchecking multiple fields? - Solr - [mail # user]
...I have a use case where I want to spellcheck the input query across   multiple fields:   Did you mean: location = washington    vs   Did you mean: person = washington  The current parameter...
   Author: Ryan McKinley, 2008-07-16, 00:56
Sort:
project
Solr (334)
Lucene (64)
Tika (1)
type
mail # user (207)
mail # dev (138)
issue (54)
date
last 7 days (0)
last 30 days (0)
last 90 days (3)
last 6 months (6)
last 9 months (399)
author
Chris Hostetter (2621)
Erick Erickson (2022)
Yonik Seeley (1645)
Erik Hatcher (1227)
Michael McCandless (1051)
Otis Gospodnetic (1002)
Jack Krupansky (757)
Uwe Schindler (709)
Grant Ingersoll (679)
Lance Norskog (507)
Robert Muir (502)
Markus Jelsma (482)
Ahmet Arslan (464)
Shalin Shekhar Mangar (415)
Mark Miller (402)
Ryan McKinley