dndb icon indicating copy to clipboard operation
dndb copied to clipboard

A Deno 🦕 persistent, embeddable and optimized NoSQL database for JS & TS

Results 4 dndb issues
Sort by recently updated
recently updated
newest added

will dndb HANDLE 5m database data, approximately 5 gb data? I watched it only create one file and read write on it, if lots of data comes then will it...

It seems it is not possible to use multiple instances at once when files needs to be created: ```ts import Datastore from 'https://deno.land/x/[email protected]/mod.ts' const a = new Datastore({filename:"a", autoload:true}) const...

bug
WIP

I believe this async section is handled incorrectly: https://github.com/denyncrawford/dndb/blob/main/src/methods/insert.js#L6 I get un awaited async issues in tests and race conditions for deleting the used file to clean up. I've done...

bug
WIP

Hello, @denyncrawford, the following code : ```js import Datastore from 'https://deno.land/x/[email protected]/mod.ts' ``` throws the following error : ``` error: Module not found "https://deno.land/std/io/bufio.ts". at https://deno.land/x/[email protected]/deps.ts:5:27 ``` @AmateurPotion, since you recently...