| 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]
[- hide]
| ..., is there a clean way to do this with copyField? thanks for any pointers ryan ... |
|
|
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]
[- hide]
| ...In the trunk code, the DocumentBuilder is not handling null values well. SolrInputDocument doc = new SolrInputDocument(); doc.addField( "id", "hello", 1.0f ); doc.addField( "name... |
| ... of indexing a 'null' value is indented to be. It looks like FieldTypes are given a chance to deal with 'null' values with the toInternal() I have not looked into it, but I think the StAX parser... |
| ... would make both: into: doc.addField( "name", "", 1.0f ); To me, it makes the most sense to just skip fields that don't have any value. This change passes all test and fixes the 'unknown... |
|
|
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]
[- hide]
| ... the fulltext field? Is there any other recommended way to do this? thanks ryan ... |
|
|
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
|
|
|
|