mongodb or操作与连接池

Posted 星海暗流

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongodb or操作与连接池相关的知识,希望对你有一定的参考价值。

mongodb

# 类似于sql中的in或者or操作
mulites field query:   db.cool.find({$or:[{field1:’val’},{‘field2’:’val’}…]})

 



# 类似于sql中的like操作
db.coo.find(‘name’: /m/) == sql like 
pymongo  使用 {‘field’:{$regex: keyword}}
http://stackoverflow.com/questions/3305561/how-do-i-query-mongodb-with-like?rq=1

 



db.serverStatus().connections 查看当前连接数
sudo lsof -i -n -P | grep TCP | grep mongo  具体连接进程

深入理解连接池:
http://blog.mlab.com/2013/11/deep-dive-into-connection-pooling/

mongdb存储图片:
http://stackoverflow.com/questions/11915770/saving-picture-to-mongodb













以上是关于mongodb or操作与连接池的主要内容,如果未能解决你的问题,请参考以下文章

node.js如何配置mongodb连接池?

8月23 配置mongodb连接池 | docker 操作

在 mongodb-native NodeJS 中为每个子进程使用集群的单个连接池与多个连接池

聊聊MongoDB中连接池索引事务

mongodb如何管理连接的?有必要实现连接池吗

jedis连接redis