i'm executing ~300 requests in parallel to simply run this (300 requests to the worker, each worker

i'm executing ~300 requests in parallel to simply run this (300 requests to the worker, each worker runs the query only once)
const stmt = env.DB.prepare(
    "INSERT OR IGNORE INTO topic_queue (topic_id) VALUES (?)"
).bind(parentTopicId);
await stmt.run();
Was this page helpful?