aboutsummaryrefslogtreecommitdiff
path: root/bench/sqlite (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-07-20BumpGravatar Jarred Sumner 2-1/+1
2023-06-01Fix streams breaking on reverted EventEmitter / Make Discord.js work (#2913)Gravatar dave caruso 2-728/+0
* Revert "Revert "use a lazyily initialized stream for `node:crypto` `createHash` (#2652)"" This reverts commit 613bb4822ee8f4fbfd78aef391e2db8f07659a6f. * Revert "Revert "implement `node:events` in javascript (#2604)"" This reverts commit a4d0a1961abe0c6073e15cc6f7c0601b74f2e3f7. * oops * fix entrypoints stuff * fix hash copy * use native events for node streams and crypto * requested changes * oops * make discord.js work * fix webkit hash * headers tojson
2023-05-11bundler tests and improve `Bun.build` return type (#2833)Gravatar dave caruso 1-1/+1
* importstar_ts * tests * run acorn test suite * bench tweaks * test * bun.build tests very incomplete * remove dataurl and base64 loaders from tests since they dont work yet * tests * stuff * stuff * add errors and array of blobs * work so far * docs * requested changes * fix overwrite docs * remove this file
2023-04-21Revert "use a lazyily initialized stream for `node:crypto` `createHash` (#2652)"Gravatar Jarred Sumner 2-0/+728
This reverts commit 3a2fd65f20d3b4e99c89f789acec5e5e40615008.
2023-04-13use a lazyily initialized stream for `node:crypto` `createHash` (#2652)Gravatar dave caruso 2-728/+0
* lazy hash * finish up crypto stuff * remove lockfiles * ok * add pipe test * update this lockfile * remove unrelated crypto benchmark from this file
2023-02-20Fix Deno SQLite benchmark (#2112)Gravatar Mathias Lafeldt 1-1/+1
Deno has removed direct access to Deno.core: https://deno.com/blog/v1.30#removal-of-internal-denocore As a result, a newer version of sqlite3 is required: https://deno.land/x/sqlite3@0.8.0/src/util.ts?source#L19
2023-01-05BumpGravatar Jarred Sumner 1-1/+1
2022-12-22Update bench (#1648)Gravatar Colin McDonnell 2-8/+8
Co-authored-by: Colin McDonnell <colinmcd@alum.mit.edu>
2022-10-09Update benchGravatar Jarred Sumner 1-8/+8
2022-08-05benchmarks(sqlite): invalid northwind database url (#989)Gravatar Hyro 1-2/+2
* build:(landing) automated website build * Revert "build:(landing) automated website build" This reverts commit ddee8485fd8b76160962c410b885e17aaff95b4e. * benchmarks(sqlite): fix invalid northwind database url Co-authored-by: xHyroM <xHyroM@users.noreply.github.com>
2022-07-12cleanup benchmarks folder (#587)Gravatar evan 8-442/+117
* cleanup benchmarks * run prettier
2022-07-09update bash references to work in non-fhs compliant distrosGravatar lucasew 1-1/+1
Signed-off-by: lucasew <lucas59356@gmail.com>
2022-07-05Clean up some benchmarksGravatar Jarred Sumner 1-3/+3
2022-05-16Update download-northwind.shGravatar Jarred Sumner 1-1/+3
2022-05-16BumpGravatar Jarred Sumner 2-4/+4
2022-05-16`bun:sqlite` (#167)Gravatar Jarred Sumner 6-0/+1169
* :scissors: * Add the slow version * draw the rest of the owl * Fix crash when allocating lots of memory * [Bun.Transipiler] Support passing objects * [JS Parser] Support passing objects to macros via Bun.Transpiler * Update JSSQLStatement.cpp * Embed SQLite * Add SQLite to Dockerfile * [sqlite] Add quick one-off queries without creating a whole object * [sqlite] Add `columnsCount`, rename raw() to `values()`, remove `rebind` * Implement `bun:sqlite` * return null * Fix updating query * Update bun.d.ts * more tests * Support variadic arguments, write tests and add types * Update sqlite.d.ts * Update sqlite.d.ts * latest * Implement `Database.loadExtension` and `Database.setCustomSQLite` * Support `require.resolve` * [napi] Improve string performance * [bun.js] Support some of `node:module` * another test * [sqlite] Support serialize & deserialize * [`bun:ffi`] Implement `CFunction` and `linkSymbols` * [bun.js] Fix crash in `Buffer.from` * Update sqlite.test.js * Document linkSymbols * docs * Update README.md