2

有没有办法使用 MongoDb (2.2) C++ 驱动程序创建稀疏索引?

ensureIndex函数似乎不接受此参数。来自MongoDb 文档

bool mongo::DBClientWithCommands::ensureIndex(  
                          const string &    ns,
                          BSONObj   keys,
                          bool  unique = false,
                          const string &    name = "",
                          bool  cache = true,
                          bool  background = false,
                          int   v = -1) 
4

2 回答 2

2

就此而言,dropDups也不是一个论点......

作为一种解决方法,您可以自己构建服务器命令并附加sparse参数。如果您点击此链接,您会注意到服务器命令由构建 a 组成,BSONObject并且各种索引选项作为字段附加。编写自己的ensureIndex.

于 2012-10-24T18:18:36.263 回答
0

我最终修补了 Mongo 源代码(mongo/cleint/dbclient.cpp):

bool DBClientWithCommands::ensureIndex( const string &ns , BSONObj keys , bool unique, const string & name , bool cache, bool background, int version, bool sparse ) {
    BSONObjBuilder toSave;
    toSave.append( "ns" , ns );
    toSave.append( "key" , keys );

    string cacheKey(ns);
    cacheKey += "--";

    if ( name != "" ) {
        toSave.append( "name" , name );
        cacheKey += name;
    }
    else {
        string nn = genIndexName( keys );
        toSave.append( "name" , nn );
        cacheKey += nn;
    }

    if( version >= 0 )
        toSave.append("v", version);

    if ( unique )
        toSave.appendBool( "unique", unique );

    if ( sparse )
        toSave.appendBool( "sparse", true );

    if( background )
        toSave.appendBool( "background", true );

    if ( _seenIndexes.count( cacheKey ) )
        return 0;

    if ( cache )
        _seenIndexes.insert( cacheKey );

    insert( Namespace( ns.c_str() ).getSisterNS( "system.indexes"  ).c_str() , toSave.obj() );
    return 1;
}

该问题应在版本 2.3.2中解决

于 2012-11-04T10:13:09.810 回答