我正在使用java程序进行mongo db插入尝试为字段创建唯一索引。 product_src是我的集合中的一个字段,我想将其设置为唯一索引,以避免重复插入。我正在尝试以下代码,但显示语法错误这是什么问题。
DB db;
try {
sample = new MongoClient("myIP",PORT);
db = sample.getDB("client_mahout");
t = db.getCollection("data_flipkart_in_avoid_duplicate_checking");
System.out.println("enter the system ip");
db.t.ensureIndex({"product_src":1});
} catch (Exception e) {}
是集合。行db.t.ensureIndex有问题({" product_src":1});
请给我一个示例代码,了解如何在mongo DB中创建唯一索引
答案 0 :(得分:11)
为了将来参考,在Java Mongo驱动程序v3.0 +中处理此问题的方法是:
public void createUniqueIndex() {
Document index = new Document("field", 1);
MongoCollection<Document> collection = client.getDatabase("db").getCollection("Collection");
collection.createIndex(index, new IndexOptions().unique(true));
}
答案 1 :(得分:5)
您需要将DBObject
传递给ensureIndex()方法。
db.t.ensureIndex(new BasicDBObject("product_src",1))
但是,ensureIndex
方法自版本2.12
起为deprecated,您需要使用createIndex()
。
db.t.createIndex(new BasicDBObject("product_src",1));