1

我有一个 4GB 的 mongodb 数据库,其中包含地理数据的 IP。数据如下所示:

{ "_id" : ObjectId("51d1c15d3a673a1a57f20251"), "IP_FROM" : NumberLong(1168612352), "IP_TO" : NumberLong(1168612607), "COUNTRY_CODE" : "US", "COUNTRY_NAME" : "UNITED STATES", "REGION" : "MICHIGAN", "CITY" : "LANSING", "LATITUDE" : 42.73328, "LONGITUDE" : -84.637765 }

我有查询数据库的java代码:

BasicDBObject query = new BasicDBObject("IP_TO", new BasicDBObject("$gte", ipNum));

DBCursor cursor = ipCollection.find(query).limit(1);
    try {
        while (cursor.hasNext()) {
            DBObject next = cursor.next();
            latitude = (Double) next.get("LATITUDE");
            longitude = (Double) next.get("LONGITUDE");
            System.out.println("LATITUTDE: " +latitude+" LONGITUDE: "+ longitude);
            break;
        }
    } finally {
        cursor.close();
    }

当我运行 db.currentOp 我得到:

"query" : {
            "IP_TO" : {
                "$gte" : NumberLong(1625798904)
            }
        }

这太长了。有什么方法可以加快这个查询?

4

1 回答 1

0

IP_TO 和 IP_FROM 上的索引可以提供帮助

于 2013-07-02T18:54:33.990 回答