文章分类 - nosql
nosql
摘要:grafana安装基本步骤 rpm安装 1.yum install go 2.yum install nodejs 3.wget https://s3-us-west-2.amazonaws.com/grafana-releases/release/grafana-5.3.0-beta1.x86_6
阅读全文
摘要:系统环境准备 # yum install numactl -y # systemctl disable firewalld # systemctl stop firewalld # cat >> /etc/security/limits.conf << EOF mongod soft nofile
阅读全文
摘要:添加文档 要想将数据插入 MongoDB 集合中,需要使用 insert() 或 save() 方法 insert() 方法的基本格式为: >db.COLLECTION_NAME.insert(document) 在插入的文档中,如果我们没有指定 _id 参数,那么 MongoDB 会自动为文档指定
阅读全文
摘要:redis概念 远程字典服务器 远程支持网络,字典支持快速查询 redis安装配置 [root@centos7 ~]# tar -xvf redis-4.0.10.tar.gz [root@centos7 ~]# cd redis-4.0.10/ [root@centos7 ~]# make &&
阅读全文
摘要:MongoDB 介绍 MongoDB 是一款跨平台、面向文档的数据库.用它创建的数据库可以实现高性能,高可用性,并且能够轻松扩展. MongoDB 的运行方式主要基于两个概念:集合(collection) >表(table)与 文档(document) > 行(row) 文档就是一组键-值对。文档有
阅读全文