您的位置:首页 > 数据库 > Redis

Redis基础教程第2节 Redis和NoSql 介绍与应用场景

2016-05-25 16:09 627 查看
NoSQL(NoSQL = Not Only SQL ),意即“不仅仅是SQL”,是一项全新的数据库革命性运动,早期就有人提出,发展至2009年趋势越发高涨。NoSQL的拥护者们提倡运用非关系型的数据存储,相对于铺天盖地的关系型数据库运用,这一概念无疑是一种全新的思维的注入。

NoSQL的特点:
处理差大量的数据

运行在廉价的PC服务器集群

解决性能瓶颈

NOSQL应用场景:
对数据高并发读写

对海量数据的高效率存储和访问

对数据的高可扩展性和高可用性

Redis is an open source (BSD licensed), in-memory data structure store, used as database, cache and message broker. It supports data structures such as strings, hashes, lists, sets, sorted sets with range queries, bitmaps, hyperloglogs andgeospatial indexes with radius queries.

Redis 优秀 blog http://www.cnblogs.com/stephen-liu74/category/354125.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  redis