Update drivers section (#8401)

pull/8403/head
Jawher Kl 1 week ago committed by GitHub
parent 2931461e2e
commit 28493bc7f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 24
      src/data/roadmaps/mongodb/content/108-developer-tools/100-language-drivers.md

@ -4,6 +4,24 @@ Language drivers are essential tools for developers to interface with MongoDB. T
MongoDB supports a wide range of languages, and some of the most popular drivers are:
- MongoDB Node.js Driver (`mongodb` for Node.js)
- PyMongo (Python)
- MongoDB Java Driver (`mongodb-driver-sync` for Java)
- MongoDB C#/.NET Driver
- MongoDB Go Driver (`mongo-go-driver`)
- MongoDB Ruby Driver
- MongoDB PHP Library
- MongoDB Swift Driver
With a suitable driver installed, you can interact with MongoDB using the idiomatic style of your programming language. The driver simplifies your code and boosts productivity, as it handles the communication between your application and the MongoDB server.
To get started with the language driver of your choice, visit the respective documentation linked above. The documentation will help you set up the driver, establish a connection, and perform various database operations in your preferred programming language.
Remember to always use the latest version of language drivers to ensure compatibility with new MongoDB features and improve overall performance.
Visit the following resources to learn more:
- [@official@MongoDB Supported Languages](https://www.mongodb.com/resources/languages)
- [@article@C Driver](http://mongoc.org/)
- [@opensource@C++ Driver](https://github.com/mongodb/mongo-cxx-driver)
- [@article@C# and .NET Driver](https://docs.mongodb.com/drivers/csharp/)
@ -14,9 +32,3 @@ MongoDB supports a wide range of languages, and some of the most popular drivers
- [@article@Python Driver (PyMongo)](https://docs.mongodb.com/drivers/pymongo/)
- [@article@Ruby Driver](https://docs.mongodb.com/drivers/ruby/)
- [@article@Rust Driver](https://docs.rs/mongodb/1.2.0/mongodb/)
With a suitable driver installed, you can interact with MongoDB using the idiomatic style of your programming language. The driver simplifies your code and boosts productivity, as it handles the communication between your application and the MongoDB server.
To get started with the language driver of your choice, visit the respective documentation linked above. The documentation will help you set up the driver, establish a connection, and perform various database operations in your preferred programming language.
Remember to always use the latest version of language drivers to ensure compatibility with new MongoDB features and improve overall performance.

Loading…
Cancel
Save