I just cannot create a desired index. I list existing indexes with
System.out.println(mongo.getCollection("User").getIndexInfo());
and still get only
[{ "v" : 1 , "key" : { "_id" : 1} , "name" : "_id_1" , "ns" : "devtest01.User"}]
I tried
mongo.getCollection("User").createIndex("syncTime");
and
Index indexDefinition = new Index("syncTime", Direction.ASC);
mongo.indexOps("User").ensureIndex(indexDefinition);
Result is still the same...