public void createCompositeIndex(MongoClient mongo) {
Document index = new Document("id_click", 1).append("id_address", 1);
MongoCollection<Document> collection = mongo.getDatabase("db").getCollection("Collection");
collection.createIndex(index, new IndexOptions());
}
答案 0 :(得分:0)
来自official examples for the MongoDB Java Driver 3.4
:
where data @> '{"id":1884595530}'::jsonb