Python Motor vs Pymongo
Posté 2023-07-12 21:04:17
0
13KB
Motor provides a single client class, MotorClient. Unlike PyMongo’s MongoClient, Motor’s client class does not begin connecting in the background when it is instantiated. Instead it connects on demand, when you first attempt an operation.
You should use Motor when you're trying to interact with a MongoDB database in an asynchronous context. When you're making something that needs to be asynchronous (like a web server, or most commonly from what I've seen here, Discord bots), you also want all the database calls to be done asynchronously. But pymongo is synchronous, i.e it is blocking, and will block the execution of your asynchronous program for the time that it is talking to the database.
Rechercher
Catégories
- Arts
- Business
- Computers
- Jeux
- Health
- Domicile
- Kids and Teens
- Argent
- News
- Recreation
- Reference
- Regional
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Lire la suite
How Do I Align Business Strategy with Organizational Goals?
One of the most important tasks for any organization is ensuring that its business strategy is...
The Power of Literature: Exploring the Depths of Human Experience
Literature is one of humanity's most cherished and enduring forms of expression. It encompasses...
Baby Money. (2021)
When a home invasion turns into a bloody shoot-out, a pair of ragtag fugitives take refuge in the...
What Are Their Strengths and Weaknesses?
Once you’ve identified your competitors, the next step in competitor analysis is evaluating...
Send Emails With Python
Python comes with the built-in smtplib module for sending emails using the Simple...