Indexes: Dynamic Fields
To support searching in object graphs they cannot have the entire structure declared upfront.
RavenDB exposes an indexing API for creating fields dynamically.
With this feature, you can search for documents using fields which are created on the fly. For example, consider a Product
object that is declared as follows:
class Product {
constructor(id, attributes) {
this.id = id;
this.attributes = attributes;
}
}
class Attribute {
constructor(name, value) {
this.name = name;
this.value = value;
}
}
Properties such as color or size are added only to some products, while other ones can have the weight and volume defined. Since Attribute
has string fields, they can specify very different properties of products.
In order to query on fields which aren't known at index creation time, we introduced the ability to create them dynamically during indexing.
The following index can be created in order to index each attribute value under its name as a separate field:
class Products_ByAttribute extends AbstractIndexCreationTask {
constructor() {
super();
this.map = `docs.Products.Select(p => new {
_ = p.attributes.Select(attribute =>
this.CreateField(attribute.name, attribute.value, false, true))
})`;
}
}
The _
character used as the field name in the mapping definition is just a convention. You can use any name, it won't be used by the index anyway. The actual field name
that you want to query by is defined in CreateField(...)
. It will generate an index field based on the properties of indexed documents and passed parameters
The index can have more fields defined, just like in any other ordinary index.
Syntax
CreateField(name, value);
CreateField(name, value, stored, analyzed);
CreateField(name, value, options);
Parameters | ||
---|---|---|
name | string |
Name of the dynamic field |
value | object |
Value of the dynamic field |
stored | boolean |
Sets FieldStorage. By default value is set to false which equals to FieldStorage.No . |
analyzed | boolean |
Sets FieldIndexing. Values: null - FieldIndexing.Default (set by overloads without this 'parameter')false - FieldIndexing.Exact true - FieldIndexing.Search |
options | CreateFieldOptions |
Dynamic field options |
Options
CreateFieldOptions | ||
---|---|---|
Storage | FieldStorage? |
More information about storing data in index can be found here. |
Indexing | FieldIndexing? |
More information about analyzers in index can be found here. |
TermVector | FieldTermVector? |
More information about term vectors in index can be found here. |
Examples
JavaScript index using the JavaScript version of CreateFields - createField(name, value, options)
:
class CreateFieldItems_JavaScript extends AbstractJavaScriptIndexCreationTask {
constructor() {
super();
this.map = `docs.Products.Select(p => new {
_ = p.attributes.foreach(x => createField(x.Name, x.Value, {
indexing: 'Exact',
storage: true,
termVector: null
}))
})`;
}
}
Querying
Looking for products by attributes with the usage of such a defined index is supported as if it were real object properties:
const results = await session
.query({ indexName: "Products/ByAttribute" })
.whereEquals("color", "red")
.ofType(Product)
.all();