| clear query|facets|time |
Search criteria: SchemaField.
Results from 1 to 10 from
81008 (3.883s).
|
|
|
Loading phrases to help you refine your search...
|
|
SchemaField.java - Solr - [source code]
|
|
... and
* limitations under the License.
*/
package org.apache.solr.schema;
import org.apache.solr.common.SolrException;
import org.apache.lucene.index.IndexableField;
import org.apache.lucene.index.StorableField...
|
|
....io.IOException;
/**
* Encapsulates all information about a Field in a Solr Schema
*
*
*/
public final class SchemaField extends FieldProperties {
final String name;
final FieldType type;
final int properties...
|
[+ show more]
[- hide]
| ...;
final String defaultValue;
boolean required = false; // this can't be final since it may be changed dynamically
/** Create a new SchemaField with the given name and type,
* using all... |
| ... the default properties from the type.
*/
public SchemaField(String name, FieldType type) {
this(name, type, type.properties, null);
}
/** Create a new SchemaField from an existing one... |
| ... by using all
* of the properties of the prototype except the field name.
*/
public SchemaField(SchemaField prototype, String name) {
this(name, prototype.type, prototype... |
|
|
|
|
|
SchemaField - Solr - [javadoc]
- [see source code]
|
|
...Encapsulates all information about a Field in a Solr Schema ...
|
|
|
http://search-lucene.com/jd/solr/solr-core/org/apache/solr/.../SchemaField.html
|
|
|
SchemaField # indexed() - Solr - [javadoc]
- [see source code]
|
|
|
|
http://search-lucene.com/jd/solr/solr-core/org/ap.../SchemaField.html#indexed()
|
|
|
SchemaField # stored() - Solr - [javadoc]
- [see source code]
|
|
|
|
http://search-lucene.com/jd/solr/solr-core/org/apa.../SchemaField.html#stored()
|
|
|
schema field properties - Solr - [mail # user]
|
|
...I'm revisiting SOLR-162 (the luke stuff) and run into a few questions about field specification... What is the difference between: SchemaField.isTokenized() and Field...
|
|
...Type.isTokenized() Is the lucene Field tokenized if either is true? How should I ask if a field is binary? (SchemaField.isBinary() is package protected and never called) Is there a per field way to specify "is...
|
[+ show more]
[- hide]
| ...Lazy"? If "enableLazyFieldLoading" is set to true, are all stored fields lazy? thanks ryan ... |
|
|
Author: Ryan McKinley,
2007-03-21, 01:29
|
|
|
FieldType # checkSchemaField(SchemaField field) - Solr - [javadoc]
- [see source code]
|
|
...Check's {@link org.apache.solr.schema.SchemaField} instances constructed
using this field type to ensure that they are valid.
This method is called by the SchemaField constructor...
|
|
...Exception}
if invariants are violated by the SchemaField.
...
|
[+ show more]
[- hide]
| ... to
check that it's initialization does not violate any fundemental
requirements of the FieldType. The default implementation
does nothing, but subclasses may chose to throw a {@link Solr... |
|
|
http://search-lucene.com/jd/sol.../FieldType.html#checkSchemaField(SchemaField)
|
|
|
Re: schema field properties - Solr - [mail # user]
|
|
...On 3/20/07, Ryan McKinley wrote: One should imply the other, unless the SchemaField was programmatically-constructed in a strange way. During indexing, only the FieldType method is used...
|
|
... (see FieldType.java:206) Good question. I believe it is impossible to create a binary field in Solr currently. "lazy" is purely a property of reading fields--it is not inherent...
|
[+ show more]
[- hide]
| ... to the field type (that particular option enables some possible optimizations when reading a subset of stored fields). It is possibly misdocumented. If our most prolific contributor is confused... |
|
|
Author: Mike Klaas,
2007-03-21, 01:49
|
|
|
Limit on number of schema fields? - Solr - [mail # user]
|
|
...Is there any significant penalty for having a large number of fields in a Solr schema (like between 50 and 100)? We have a site with several different types of searchable content...
|
|
..., and each of those types will require several different fields (most of which are not shared). I figured that it'd be easier to have everything in one index, but I just want to make sure...
|
|
|
Author: Mike Baranczak,
2006-10-18, 18:23
|
|
|
CurrencyField # checkSchemaField(SchemaField field) - Solr - [javadoc]
- [see source code]
|
|
|
|
http://search-lucene.com/jd/so...rrencyField.html#checkSchemaField(SchemaField)
|
|
|
SchemaField # SchemaField(org.apache.solr.schema.SchemaField prototype, java.lang.String name) - Solr - [javadoc]
- [see source code]
|
|
...Create a new SchemaField from an existing one by using all
of the properties of the prototype except the field name. ...
|
|
|
http://search-lucene.com/jd/so...che.solr.schema.SchemaField, java.lang.String)
|
|
|
|