File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,13 @@ export default async function() {
1616 // unique or don’t insert what is already there or just dump tables first perhaps
1717
1818 try {
19+ // speeds up by using memory as much as possible
20+ db . exec ( `
21+ PRAGMA synchronous = OFF;
22+ PRAGMA journal_mode = MEMORY;
23+ PRAGMA temp_store = MEMORY;
24+ ` ) ;
25+
1926 await db . transaction ( async ( ) => {
2027 db . exec ( `
2128 DROP TABLE IF EXISTS provides;
Original file line number Diff line number Diff line change 11//HEY YOU! DO NOT CHANGE THIS TO USE deps.ts since it breaks pkgx/gui and scripts ’n’ shit
2- import { isArray , isString } from "https://deno.land/x/is_what@v4.1.16 /src/index.ts"
2+ import { isArray , isString } from "https://deno.land/x/is_what@v4.1.15 /src/index.ts"
33
44/**
55 * we have our own implementation because open source is full of weird
You can’t perform that action at this time.
0 commit comments