MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

PyMongo crea un indice univoco con 2 o più campi

Devi creare un indice composto e impostare unique a True come indicato nella documentazione :

self.db[self.mongo_collection].create_index(
    [("url", pymongo.DESCENDING), ("category", pymongo.ASCENDING)],
    unique=True
)