Richard Newman
Richard Newman
The end result of building DataScript is a chunk of JS. It'd be really interesting to have a github.io page with 'transact' and 'query' boxes to try it out without...
``` $ wasmer-js --help … SUBCOMMANDS … validate Validate a Web Assembly binary ``` ``` $ wasmer-js validate foo.wasm Error: File validate not found ``` See also doc bug report...
This is a straightforward omission.
At present a missing key in a `.delete` call returns `StoreError::LmdbError(lmdb::error::Error::NotFound)`. It is necessary to handle this case specifically in order to implement delete-if-present, which means that consumers need to...
https://docs.rs/rkv/0.10.2/rkv/struct.EnvironmentBuilder.html#method.open_with_permissions I don't see a way to build an `Rkv` from an `Environment` directly, only via an `EnvironmentBuilder`, but there's no way to set permissions/modes on an `EnvironmentBuilder`.
This is a bit of a hole/omission. I was aiming for simplicity when I defined the set of types, and was also following Mentat's type system, which was definitely aimed...
It would be useful for debugging and testing to be able to dump an entire database as JSON. This should be relatively easy to implement: all of our types work...
(Placeholder because this eventually belongs in Bugzilla.) It would be useful for developers to be able to interact with rkv files via the Firefox developer tools, as well as via...
Likely drawing on #2, it would be useful for developers to be able to interact with rkv files directly.
In order to maintain LMDB's requirement that each database is opened only once at a time in each process, we have a manager that canonicalizes paths and maintains a set...