Python Motor vs Pymongo
نشر بتاريخ 2023-07-12 21:04:17
0
8كيلو بايت
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.
البحث
الأقسام
- Arts
- Business
- Computers
- الألعاب
- Health
- الرئيسية
- Kids and Teens
- مال
- News
- Recreation
- Reference
- Regional
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
إقرأ المزيد
What Is a Social Enterprise?
In today’s world, more businesses are being built not just to generate profit—but to...
What Are the Most Important Leadership Skills?
In today’s fast-paced, ever-evolving world, leadership is no longer about...
Новый порядок. New Order. (2020)
Роскошная свадьба представителей высшего класса прерывается явлением непрошенных гостей - в...
The Intersection of Science and the Environment: Understanding Our Impact and the Path Forward
In an era of rapid technological advancement, the relationship between science and the...
The 7 Most Frequently Asked Questions About Leading Engaging Meetings
Running a meeting that people actually want to attend is both an art and a science. Leaders and...