搜索索引
用于浏览器和Node.js的网络弹性持久性全文搜索库
快速开始
const si = require ( 'search-index' )
// initialize an index
const { PUT , QUERY } = await si ( )
// add documents to the index
await PUT ( /* objects */ )
// read documents from the index
const results = await QU