raku-mongodb-driver
raku-mongodb-driver copied to clipboard
MongoDB driver for Raku
This driver is using a deprecated OP_QUERY operation that is not anymore supported by MongoDB 6.0. Can you update the driver to use OP_MSG instead which is the new supported...
Users can be added but users can not yet login. Two methods must be supported, mongodb-cr and scram-sha1. There are other methods which come later
Is mongo-perl6-driver supported for Windows platforms? So far I have not been able to get a successful return from the Mongo server running on localhost. It appears to connect and...
at the moment adding an account is not protected. It should be sent over a protected connection using ssl/tls
``` use BSON::Document; use MongoDB::Client; my $client = MongoDB::Client.new(:uri('mongodb://')); my $database = $client.database('myProject'); my MongoDB::Collection $collection = $database.collection('people'); $collection.insert: ( name => "Foo Bar", ); ``` gives me ``` No...
Hi Marcel, I'm trying to connect to MongoDB Atlas instance but it's required to use a connection string like this one: `Parsing error in url 'mongodb+srv://user:[email protected]/?retryWrites=true&w=majority'` but the current driver...
Hi, I'd like to get your opinion about this so I'm trying to increase the insert speed in my program but when I create a channel and then create multiple...
Hi, While doing doing some more testing I've discovered something wrong about exception handling, look at this snippet that is trying to connect to a MongoDB server that is **not**...