Option name | Type | Description |
---|---|---|
config | Function | A function that will be called with the new instance of the elasticlunr.Index as both its context and first parameter. It can be used to |
return | elasticlunr.Index |
Convenience function for instantiating a new elasticlunr index and configuring it
with the default pipeline functions and the passed config function.
When using this convenience function a new index will be created with the
following functions already in the pipeline:
Example:
var idx = elasticlunr(function () {
this.addField('id');
this.addField('title');
this.addField('body');
//this.setRef('id'); // default ref is 'id'
this.pipeline.add(function () {
// some custom pipeline function
});
});
idx.addDoc({
id: 1,
title: 'Oracle released database 12g',
body: 'Yestaday, Oracle has released their latest database, named 12g, more robust. this product will increase Oracle profit.'
});
idx.addDoc({
id: 2,
title: 'Oracle released annual profit report',
body: 'Yestaday, Oracle has released their annual profit report of 2015, total profit is 12.5 Billion.'
});
idx.search('oracle database');
idx.search('oracle database', {fields: {title: {boost: 2}, body: {boost: 1}}});
var elasticlunr = function (config) {
var idx = new elasticlunr.Index;
idx.pipeline.add(
elasticlunr.trimmer,
elasticlunr.stopWordFilter,
elasticlunr.stemmer
);
if (config) config.call(idx, idx);
return idx;
};
elasticlunr.version = "@VERSION";
// only used this to make elasticlunr.js compatible with lunr-languages
// this is a trick to define a global alias of elasticlunr
lunr = elasticlunr;