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 res = await fetch(`${DATASTORE_URL_PREFIX}${chunkIdPrefix}${chunkId}`);
    console.log('Fetched chunk from KV');
    return res.arrayBuffer();
};