edgesearch 0.4.1

Serverless full-text search with Cloudflare Workers, WebAssembly, and Roaring Bitmaps
Documentation
1
2
3
4
5
6
"use strict";
var fetchChunk = async (chunkIdPrefix, chunkId) => {
    const chunkData = await KV.get(`${chunkIdPrefix}${chunkId}`, 'arrayBuffer');
    console.log('Fetched chunk from KV');
    return chunkData;
};