LevelDB数据库使用

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 21:44 点击:

向数据库插入数据的操作如下:

 leveldb::DB* LocalCacheDB:: m_pDB=NULL;
leveldb::Options LocalCacheDB:: m_options;

bool WriteToDB(INFO& info)
{
    leveldb::WriteOptions wo;
    leveldb::ReadOptions ro;
    wo.sync = false;//考虑是否异步

    //将info转为char[]
    int nLen = sizeof(INFO);
    char* chTmp = new char[nLen];
    ZeroMemory(chTmp, nLen);
    memcpy(chTmp,&info, nLen);

    char chKey[10];
    ZeroMemory(chKey, 10);

    leveldb::Iterator *iter = m_pDB->NewIterator(ro);
    if (iter == NULL)
    {
        return false;
    }
    iter->SeekToLast();//last的key最大,这里是自己定义的比较函数按key排序
    if (!iter->Valid())
    {
        //数据库为空
        itoa(1, chKey, 10);//key从1开始
    }
    else
    {
        leveldb::Slice sliceKey;
        sliceKey=iter->key();
        HPR_INT32 nKey=0;

        nKey=atoi(sliceKey.data());
        nKey++;
        itoa(nKey,chKey,10);
    }
    delete iter;//切忌在使用完sliceKey之前删除iter www.2cto.com

    leveldb::Status s = m_pDB->Put(wo,chKey,leveldb::Slice(chTmp,nLen));
    delete[] chTmp;
    if (!s.ok())
    {   

         return false;
    }
    cout<<"存入一条数据 index:"<<chKey<<endl;
    return true;
}

 

 

//比较函数如下:

class DBComparator:public leveldb::Comparator
{
    public:
    int Compare(const leveldb::Slice& a, const leveldb::Slice& b) const
    {
        int na,nb;
        na=atoi(a.data());
        nb=atoi(b.data());
        if (na<nb)
        {
            return -1;
        }
        if (na>nb)
        {
            return +1;
        }
        return 0;
    }
    // Ignore the following methods for now:
    const char* Name() const { return "DBComparator"; }
    void FindShortestSeparator(std::string*, const leveldb::Slice&) const { }
    void FindShortSuccessor(std::string*) const { }
};

摘自 我是榜样的博客

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • Request.ServerVariables 参数大全
      • 执行全文索引时出现权限不足的解决方法
      • 导入excel文件处理流程节点的解决方案
      • 查看sql修改痕迹(SQL Change Tracking on Table)
      • MongoDB安装为Windows服务方法与注意事项
      • App数据层设计及云存储使用指南
      • PostgreSQL启动过程中的那些事三:加载GUC参数
      • 写给MongoDB开发者的50条建议Tip1
      • Percolator与分布式事务思考(二)
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1