Documentation Index
Fetch the complete documentation index at: https://mintlify.com/sebamar88/bytekit/llms.txt
Use this file to discover all available pages before exploring further.
Prevent duplicate concurrent requests
Documentation Index
Fetch the complete documentation index at: https://mintlify.com/sebamar88/bytekit/llms.txt
Use this file to discover all available pages before exploring further.
import { RequestDeduplicator } from "bytekit";
// or
import { RequestDeduplicator } from "bytekit/request-deduplicator";
const deduplicator = new RequestDeduplicator();
const result = await deduplicator.execute("/users", async () => {
return await api.get("/users");
});
// Concurrent calls with same key will share the same request