Joël Gähwiler

Results 77 comments of Joël Gähwiler

Another option would be to extract the "core" libraries into a separate `core` repository/module. This would be backwards compatible for users that already import this module. And then users that...

The `FileStore` storage adapter currently stores the full database as one BSON file. If you count BSON as an export format then the storage format would satisfy this already. Otherwise...

No, it is Go only ATM. However, if one would add a TCP frontend implementing the MongoDB wire protocol, it could be done.

Not that I'm aware of. I played with that idea some months ago and it actually looked quite straightforward, since the wire protocol is just BSON documents sent back and...

The protocol itself is documented here: https://docs.mongodb.com/manual/reference/mongodb-wire-protocol. It would be nice to have a `lungo/wirekit` package that implements the wire protocol and and a generic interface to handle the commands....

I did some experiments on this a while ago here: https://github.com/256dpi/lungo/tree/wirekit. Following the MongoDB 5.x deprecations, we could cleanup a lot, since only support for OP_MSG is needed, as @zenhack...

Yes, a method on the resource that is responsible for fetching such relations would be the way to go. I'll look into submitting a PR for fixing the bug first.

I saw the notice. I also do not use the library anymore myself. Just wanted to help going forward with using es6 while still supporting es5 environments.

Yes! The idea is to support it at some point. I'm not yet sure how integrated it should be tough. Should there be different clients or is it integrated that...