nosql classification and redis profile

Nosql and classification of nosql

2007 alibaba 去IOE IBM小型机 Oracle EMC的网络设备
大数据概念	传统关系型不能满足 BSON
nosql = not only SQL
	|-- MongoDB
	|-- redis
	|-- es
	|-- solr
	|-- hbase、having
	...
常见[NoSQL]数据库的分类
	 列存储:Hbase
	 文档存储:MongoDB
	 k-v存储:redis
	 对象(图)存储:Neo4J
	 Xml数据库:BerkeleyDB、BaseX

优点:高可扩展性、分布式计算、低成本、灵活架构、半结构化数据、简化关联关系

缺点:没有标准化、有限查询、不直观

Redis's profile

Profile: redis.windows.conf

bind				# 绑定ip地址获取域名
databases 16			# 默认开启16个数据库

save 900 1
save 300 10
save 60 10000			# Redis默认使用的快照进行数据持久化

dbfilename dump.rdb		# 存储的文件
dir ./				# 当前路径
slaveof masterip masterport	# 主从备份
masterauth <master-password>	# 主服务器的密码
requirepass 密码		# 服务器的密码	

appendonly no			# AOF持久化方案
daemonize yes			# Linux下将redis做成守护进程
Published 162 original articles · won praise 9 · views 3098

Guess you like

Origin blog.csdn.net/ll_j_21/article/details/104665377