Redis崩溃
I'm very serious about software reliability, and this is not just a good thing.It is good in a sense, as I tend to work to ensure that the software I release is solid. At the same time I think I ...
深入剖析Redis RDB持久化机制
本文pesiwang同学的投稿分享,对Redis RDB文件持久化的内部实现进行了源码分析。本文分析源码基于 Redis 2.4.7 stable 版本。下面是其文章原文:rdb是redis保存内存数据到磁盘数据的其中一种方式(另一种是A...
高性能NoSQL数据库Redis 2.6版发布
Redis开发团队终于发布了Redis 2.6正式版本,该版本原计划在今年年初发布,但由于添加了大量超出预期的新功能,因此发布延迟至今。 Redis是一种面向“key-value”类型数据的NoSQL数据库系统,具有高性能、持久...
让Redis数据集保持一致性
As you start using Redis more, you soon find yourself delving into redis' transactions. A traditional RDBMS' view of CAS (compare-and-set) transactions is:- Lock down the entire database to writ...
Using Sorted Sets with Jedis API
Sorted Sets and JedisIn the previous post we started looking into Jedis API a Java Redis Client.In this post we will look into the Sorted Set(zsets).Sorted Set works like a Set in the way it d...