zookzook
Announcing an alternative MongoDB Driver! Do you like the MongoDB despite the general opinion a database always has to be an sql database? Would you like to use your favorite database with your favorite language? Then you are right here!
Sadly there is no official driver (I do not know why?). So you have to take things into your own hands and write the driver yourself. Currently the implementation does not support all features yet. But over time (hopefully) the succesive expansion of the missing features will take place.
Features:
- Supports MongoDB versions 3.2, 3.4, 3.6, 4.0
- Connection pooling (through DBConnection 2.x)
- Streaming cursors
- Performant ObjectID generation
- Follows driver specification set by 10gen
- Safe (by default) and unsafe writes
- Aggregation pipeline
- Replica sets
- Support for SCRAM-SHA-256 (MongoDB 4.x)
- Support for change streams api (See)
Trending in Announcing
Hey everyone!
Req is an HTTP client for Elixir that I’ve been working on for quite some time. There is already a lot of HTTP clients out...
New
Samly can be used to enable SAML 2.0 Single Sign On in a Plug/Phoenix application.
This library uses Erlang esaml to provide
plug enabl...
New
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi all!
I want to present a small library which provides a mix task for generating an Entity-Relationship Diagram for Ecto schemas.
You...
New
Hello
Published a new library - ProcessHub!
ProcessHub is a library designed to manage process distribution within the Elixir cluster. ...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
I am seeing a lot of aplications of Argumentum ad Vericundiam in software discussions. They do link some piece of writing and point us to...
New
This showed up on my feed.. anyone heard of it? Just hype?
Ox Alpha is a reasoning model designed for coding, sustained ag...
New
It’s not that it’s vocabulary is too advanced. It’s something worse.
I get lost trying to follow even a paragraph written by Claude. It’...
New
Today we’re releasing Oban for Python. Not an Oban client in Python. Not a pythonx wrapper embedded in Elixir. Nope, it’s a fully operati...
New
@hugobarauna, Dr. Dimitrios Koutmos (my brother) and I (Alex Koutmos) have been hard at work on writing a book on how you can use Elixir ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
Qqwy
Welcome to the forum, and thank you for sharing your hard work on this library!
From the GitHub Readme, it gather that
mongodb_driveris a split-off with some different design decisions from themongodblibrary.Do you know how it compares to the other MongoDB-drivers that currently are floating around in the Elixir ecosystem? (
mongo,mongodb_erlang,mongodb_clientandmongox)zookzook
let me say: tempus fugit.
mongox - DEPRECATED
mongo - 0.5.4 December 1, 2015 (docs)
mongodb_erlang - seems not to support op_msg (since 3.6)
Unfortunately, the libraries are not up-to-date regarding the MongoDB server. Since I use the latest version of my projects and therefore want to use the features of the server, I was looking for a suitable driver. Unfortunately I did not find one, so I searched for the best starting point and developed my own driver.
zookzook
The new version 0.6.0 has been released. Additional features since last announcing (May 4):
Support for bulk writes (See specs)
support for driver sessions (See specs)
support driver transactions (See specs)
Enhancements
writeConcernfilter_nilsReadPreferenceServerSession,SessionPool,Session)createcommand (explicitly creating a collection or view)Check the documentation for more information:
mhs
I don’t use MongoDB at present. But, just wanted to say, nice work @zookzook. I hope you keep getting traction with this.
zookzook
Thank you for your feedback! I am always happy when I get some feedback
zookzook
The new version 0.7.0 has been released:
Enhancements:
Mongo.limitsandMongo.wire_versionBSON.ObjectId.decode/1andBSON.ObjectId.encode/1Mongo.uuid/1Session.commit_transactionreturns now:okor an error{:error, %Mongo.Error{}}errorLabelszookzook
Announcing a helper library to support using structs instead of bare maps while using the MongoDB-Driver:
Hex.pm
Github
Demo
Features:
after loadfunctionbefore dumpfunctionThe module creates some boilerplate code, so you can use structs for your data. You call
load/1to convert the map from the driver to your struct. To save your struct to MongoDB you calldump/1before you callinsert_oneorinsert_many.Check out the docs!
edwinallenz
Actually I’m using your driver in production and works well, I have a filtering question that I posted here.
If you’re able to give it a look
thanks
zookzook
See my answer here.
zookzook
The driver is now OTP 24 ready. Thanks to aenglisc for replacing the deprecated functions.