Atlas中间件快速入门(实现数据库读写分离)
from pymongo import MongoClient
from bson import ObjectId
from atlasclient import AtlasClient
# 连接Atlas数据库
atlas_client = AtlasClient('mongodb+srv://username:password@cluster0.mongodb.net/test?retryWrites=true&w=majority')
# 获取数据库和集合
db = atlas_client.get_database('test_database')
collection = db.get_collection('test_collection')
# 插入文档
doc_id = collection.insert_one({'name': 'Alice', 'age': 25}).inserted_id
print(f"Inserted document with ID: {ObjectId(doc_id)}")
# 查询文档
query = {'name': 'Alice'}
result = collection.find_one(query)
print(f"Found document: {result}")
# 更新文档
update_result = collection.update_one(query, {'$set': {'age': 30}})
print(f"Updated {update_result.modified_count} document(s)")
# 删除文档
delete_result = collection.delete_one(query)
print(f"Deleted {delete_result.deleted_count} document(s)")
这段代码展示了如何使用atlasclient
库连接到一个Atlas MongoDB数据库,并执行基本的CRUD操作。首先,我们创建了AtlasClient的实例,用于连接到数据库。然后,我们获取了数据库和集合的引用,并进行了插入、查询、更新和删除操作。这个例子简单直观地展示了如何使用atlasclient
库进行数据库操作。
评论已关闭