But is there really a 100% overhead considering I’ve seen many other endpoints being limited at 100M
But is there really a 100% overhead considering I’ve seen many other endpoints being limited at 100MB? I had 50MB of data…
CLOUDFLARE_ACCOUNT_ID=1234 CLOUDFLARE_API_TOKEN=4321 wrangler whoamiCLOUDFLARE_ACCOUNT_ID=1234 CLOUDFLARE_API_TOKEN=4321 wrangler d1 execute test-database --command="SELECT * FROM Customers" needs to be run from a linux-like environmentCLOUDFLARE_ACCOUNT_ID and CLOUDFLARE_API_TOKEN to your windows system env vars


wrangler d1 info <DBNAME>wrangler d1 migrations apply krypton --env production
wrangler dev —env staging work?
INSERT INTO test (id) VALUES (1), (2), (3), (4), (5){
"params": [
1,
2,
3,
4,
5
],
"sql": "INSERT INTO test (id) VALUES (?), (?), (?), (?), (?)"
}[env.production]
name = "krypton"
logpush = true
workers_dev = true
d1_databases = [
{ binding = "DB", database_name = "krypton", database_id = "<123>" },
]app.get('/', async (c) => {
const res1 = await c.env.DB.prepare('SELECT * from testTable;').all();
return c.json({ status: 'success', message: res1 });
});