1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-09-25 04:51:29 +02:00
Files
flexsearch/dist/module-debug/preset.js
2025-03-22 15:42:12 +01:00

57 lines
1.2 KiB
JavaScript

import { is_string } from "./common.js";
import { IndexOptions } from "./type.js";
/**
* @type {Object<string, IndexOptions>}
* @const
*/
const presets = {
memory: {
resolution: 1
},
performance: {
resolution: 3,
fastupdate: /* tag? */ /* stringify */ /* stringify */ /* single param */ /* skip update: */ /* append: */ /* skip update: */ /* skip_update: */ /* skip deletion */ // splice:
!0 /*await rows.hasNext()*/ /*await rows.hasNext()*/ /*await rows.hasNext()*/,
context: {
depth: 1,
resolution: 1
}
},
match: {
tokenize: "forward"
},
score: {
resolution: 9,
context: {
depth: 2,
resolution: 3
}
}
};
/**
*
* @param {IndexOptions|string} options
* @return {IndexOptions}
*/
export default function apply_preset(options) {
const preset = /** @type string */is_string(options) ? options : options.preset;
if (preset) {
if (!presets[preset]) {
console.warn("Preset not found: " + preset);
}
options = /** @type IndexOptions */Object.assign({}, presets[preset], /** @type {Object} */options);
}
return (/** @type IndexOptions */options
);
}