Loading...

Reviews by real users

Just finished a project using open source libraries and have fresh impressions?

Write a review to share your experiences with open source!

On DevRates we focus on reviews by developers using libraries on their daily work.

Technology radar

Launching a start-up or commercial project using open-source libraries? No time to evaluate various technology stacks?

Interested in the latest trends and top-rated open source projects for all layers of your application?

DevRates contains projects reviews of most popular tagged categories and programming languages.

Build your skill profile

Join DevRates and build your public profile from libraries you know and experience positions from projects you've been involved in.

Follow projects and don't miss any news from blogs and twitter on your wall.

Your company is looking for talented developers? Register on DevRates and show your technology stack on your company profile.

JOIN THE COMMUNITY TAKE A TOUR

Redis

Homepage

http://redis.io/

Latest release

2.6.6 (28/11/2012)

Developed by

VMware

Licenses

BSD License

Overall rating

N/A
Usability
N/A
Simplicity
N/A
Documentation
N/A
Community
N/A

Tags

  • nosql

  • c

  • key-value store

Description

Redis is an open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.

You can run atomic operations on these types, like appending to a string; incrementing the value in a hash; pushing to a list; computing set intersection, union and difference; or getting the member with highest ranking in a sorted set.

In order to achieve its outstanding performance, Redis works with an in-memory dataset. Depending on your use case, you can persist it either by dumping the dataset to disk every once in a while, or by appending each command to a log.

Redis also supports trivial-to-setup master-slave replication, with very fast non-blocking first synchronization, auto-reconnection on net split and so forth.

Other features include a simple check-and-set mechanism, pub/sub and configuration settings to make Redis behave like a cache.

You can use Redis from most programming languages out there.

Redis is written in ANSI C and works in most POSIX systems like Linux, *BSD, OS X and Solaris without external dependencies. There is no official support for Windows builds, although you may have some options.

Latest reviews

8.0
nicolas.martignole

Redis is a rich noSQL database that presents itself as a TCP Server. Basically, you interact with him through a driver directly over the wire. Its in-memory model is really efficient, and can be backed-up to the file system. If you want to use it as a cache, you can remove the background save to disk. If you prefer to use it as a persistent data store, its powerful backup policies are also interesting. Redis does not offer sharding, but is easy to configure in a master-slave configuration. 

Redis is written in C, it's a single-core application that will run on one core, exactly like a Node.JS server. I recommend Redis if you want to use advanced data structure such as Set, List, Hash, String and Queue. There's also a simple publish/request system, and there's support for Transaction, that will ensure that a set of operations is executed atomatically. 

full review »
Sign in to vote for review score: 1
9.2
gildus

it is very imprescindible on big projects, not all is with database relational.

full review »
Sign in to vote for review score: 0
9.8
brunocn80
full review »
Sign in to vote for review score: 0
9.8
thomas.bonk
full review »
Sign in to vote for review score: 0
Please sign in to rate or post a comment
Scroll to top