zoukankan      html  css  js  c++  java
  • Mongodb实用网址记录

    ISODate类型
    算出时间戳
    > ISODate("2012-04-16T16:00:00Z").valueOf() 
    1334592000000

    然后根据得到的时间戳查询即可
    db.openapps_visitlog.find({"request_time":{$gte:new Date(1334592000000)}}) 

    mongodb c# driver 官网:
    http://mongodb.github.io/mongo-csharp-driver/2.0/getting_started/

    权限用户设置

    http://www.cnblogs.com/zengen/archive/2011/04/23/2025722.html

    一次性介绍:
    http://www.cnblogs.com/fish-li/archive/2011/06/26/2090800.html#_label4

    连续8天:
    http://www.cnblogs.com/huangxincheng/archive/2012/03/09/2386054.html

    开天辟地(连续介绍):http://www.cnblogs.com/xumingxiang/archive/2012/04/08/2437468.html#title10

    备份详解:
    http://www.cnblogs.com/jiangzhichao/archive/2011/08/12/2135899.html

    MongoDB学习笔记(五) MongoDB文件存取操作:
    http://www.cnblogs.com/lipan/archive/2011/03/21/1989409.html

    分析
    http://blog.csdn.net/xiamizy/article/details/41521025

    查询
    http://blog.csdn.net/xiamizy/article/details/41521025
    http://docs.mongodb.org/ecosystem/tutorial/use-linq-queries-with-csharp-driver/

    操作
    http://www.tuicool.com/articles/JNNJjuf

    同步与集群,主从部署:
    http://www.2cto.com/database/201201/116451.html


    http://www.jb51.net/article/50501.htm

    mongodb存储空间问题 :

    http://bbs.csdn.net/topics/390229552


    http://order.tuan.qunar.com/team/buy/detailIndex.htm?in_track=hotel_wrapper&bd_ssid=&bd_sign=&seq=jinzhong_3794&checkin=2015-04-03&checkout=2015-04-04&id=QNRMzM0NDgzODQ=

    索引:
    http://www.cnblogs.com/stephen-liu74/archive/2012/08/01/2561557.html
    > db.test.ensureIndex({"username":1},{"background":true})


    如果发现主从不同步,从上手动同步

    db.runCommand({"resync":1})

    FindAllAs<product> 无法用到索引 需要用到AsQueryable

    mongod --repair

    http://www.cnblogs.com/YOUCAN/archive/2013/01/27/2879121.html


    cd mongodbin

    mongod -dbpath=e:mongodbdb -port=3333

    存储在mongodb中的时间是标准时间UTC +0:00 而咱们中国的失去是+8.00 。
    不知道你用的是什么语言,就我所知道的C#的驱动支持一个特性,将实体的时间属性上添加上这个特性并指时区就可以了。

    例如:
    [BsonDateTimeOptions(Kind = DateTimeKind.Local)]
    public DateTime Birth{get;set;}


    参考网址:http://www.cnblogs.com/xumingxiang/archive/2012/04/08/2437468.html#title10

    4.6)删除所有记录

    > db.users.remove()

    4.7) 删除collection

    > db.users.drop() //如果删除成功会返回“true”,否则返回“false”

    4.8)删除当前数据库

    > db.dropDatabase()


    五,更多命令

    db.AddUser(username,password) 添加用户

    db.auth(usrename,password) 设置数据库连接验证

    db.cloneDataBase(fromhost) 从目标服务器克隆一个数据库
    db.commandHelp(name) returns the help for the command
    db.copyDatabase(fromdb,todb,fromhost) 复制数据库fromdb---源数据库名称,todb---目标数据库名称,fromhost---源数据库服务器地址
    db.createCollection(name,{size:3333,capped:333,max:88888}) 创建一个数据集,相当于一个表
    db.currentOp() 取消当前库的当前操作
    db.dropDataBase() 删除当前数据库
    db.eval(func,args) run code server-side
    db.getCollection(cname) 取得一个数据集合,同用法:db['cname'] or
    db.getCollenctionNames() 取得所有数据集合的名称列表
    db.getLastError() 返回最后一个错误的提示消息
    db.getLastErrorObj() 返回最后一个错误的对象
    db.getMongo() 取得当前服务器的连接对象get the server
    db.getMondo().setSlaveOk() allow this connection to read from then nonmaster membr of a replica pair
    db.getName() 返回当操作数据库的名称
    db.getPrevError() 返回上一个错误对象
    db.getProfilingLevel()
    db.getReplicationInfo() 获得重复的数据
    db.getSisterDB(name) get the db at the same server as this onew
    db.killOp() 停止(杀死)在当前库的当前操作
    db.printCollectionStats() 返回当前库的数据集状态
    db.printReplicationInfo()
    db.printSlaveReplicationInfo()
    db.printShardingStatus() 返回当前数据库是否为共享数据库
    db.removeUser(username) 删除用户
    db.repairDatabase() 修复当前数据库
    db.resetError()
    db.runCommand(cmdObj) run a database command. if cmdObj is a string, turns it into {cmdObj:1}
    db.setProfilingLevel(level) 0=off,1=slow,2=all
    db.shutdownServer() 关闭当前服务程序
    db.version() 返回当前程序的版本信息

    db.test.find({id:10}) 返回test数据集ID=10的数据集
    db.test.find({id:10}).count() 返回test数据集ID=10的数据总数
    db.test.find({id:10}).limit(2) 返回test数据集ID=10的数据集从第二条开始的数据集
    db.test.find({id:10}).skip(8) 返回test数据集ID=10的数据集从0到第八条的数据集
    db.test.find({id:10}).limit(2).skip(8) 返回test数据集ID=1=的数据集从第二条到第八条的数据
    db.test.find({id:10}).sort() 返回test数据集ID=10的排序数据集
    db.test.findOne([query]) 返回符合条件的一条数据
    db.test.getDB() 返回此数据集所属的数据库名称
    db.test.getIndexes() 返回些数据集的索引信息
    db.test.group({key:...,initial:...,reduce:...[,cond:...]})
    db.test.mapReduce(mayFunction,reduceFunction,<optional params>)
    db.test.remove(query) 在数据集中删除一条数据
    db.test.renameCollection(newName) 重命名些数据集名称
    db.test.save(obj) 往数据集中插入一条数据
    db.test.stats() 返回此数据集的状态
    db.test.storageSize() 返回此数据集的存储大小
    db.test.totalIndexSize() 返回此数据集的索引文件大小
    db.test.totalSize() 返回些数据集的总大小
    db.test.update(query,object[,upsert_bool]) 在此数据集中更新一条数据
    db.test.validate() 验证此数据集
    db.test.getShardVersion() 返回数据集共享版本号


    六,MongoDB语法与现有关系型数据库SQL语法比较

    MongoDB语法 MySql语法
    db.test.find({'name':'foobar'}) <==> select * from test where name='foobar'
    db.test.find() <==> select * from test
    db.test.find({'ID':10}).count() <==> select count(*) from test where ID=10
    db.test.find().skip(10).limit(20) <==> select * from test limit 10,20
    db.test.find({'ID':{$in:[25,35,45]}}) <==> select * from test where ID in (25,35,45)
    db.test.find().sort({'ID':-1}) <==> select * from test order by ID desc
    db.test.distinct('name',{'ID':{$lt:20}}) <==> select distinct(name) from test where ID<20
    db.test.group({key:{'name':true},cond:{'name':'foo'},reduce:function(obj,prev){prev.msum+=obj.marks;},initial:{msum:0}}) <==> select name,sum(marks) from test group by name
    db.test.find('this.ID<20',{name:1}) <==> select name from test where ID<20
    db.test.insert({'name':'foobar','age':25})<==>insert into test ('name','age') values('foobar',25)
    db.test.remove({}) <==> delete * from test
    db.test.remove({'age':20}) <==> delete test where age=20
    db.test.remove({'age':{$lt:20}}) <==> elete test where age<20
    db.test.remove({'age':{$lte:20}}) <==> delete test where age<=20
    db.test.remove({'age':{$gt:20}}) <==> delete test where age>20
    db.test.remove({'age':{$gte:20}}) <==> delete test where age>=20
    db.test.remove({'age':{$ne:20}}) <==> delete test where age!=20
    db.test.update({'name':'foobar'},{$set:{'age':36}}) <==> update test set age=36 where name='foobar'
    db.test.update({'name':'foobar'},{$inc:{'age':3}}) <==> update test set age=age+3 where name='foobar'

    注意以上命令大小写敏感

    Mongodb 字段类型转换 :http://www.linxh.blog.chinaunix.net/uid-15795819-id-3873422.html

  • 相关阅读:
    IDEA tomcat 乱码( Catalina log localhost log server )
    idea的maven项目无法加载resources下的配置或是xml文件
    【MyBatis系列10】MyBatis日志如何做到兼容所有常用的日志框架
    【MyBatis系列9】彻底搞懂MyBatis插件原理及PageHelper原理
    【MyBatis系列8】带你彻底掌握MyBatis的缓存工作原理
    【MyBatis系列7】原来SqlSession只是个甩手掌柜,真正干活的却是Executor等四大对象
    idea 热部署Devtools
    git branch 命令查看分支、删除远程分支、本地分支【转】
    【转】elasticsearch 基础知识汇总
    【转】Elasticsearch究竟要设置多少分片数?
  • 原文地址:https://www.cnblogs.com/cpugege/p/4469148.html
Copyright © 2011-2022 走看看