新しいキー・バリュー型データベースRedis

イタリア人Salvatore Sanfilippoによって始められた新しいキー・バリュー型データベースRedis。同じくイタリア製品のランボルギーニフェラーリのようにRedisは速いパフォーマンスを信条とする。開発者であるSalvatore Sanfilippoはまたmysqlなどのデータベースを必要せずとも動くことを証明して見せるためにRedisとPHPを用いてtwitterクローン・アプリであるretwisを作った。このクローンのビギナー向けの記事はまもなくwikiページに発表され、Redisの進行状況もtwitterアカウント@antirezで随時知らせていくとのこと。

Redis (REmote DIctionary Server) is a key-value database written in C. It can be used like memcached, in front of a traditional database, or on its own thanks to the fact that the in-memory datasets are not volatile but instead persisted on disk. As such it's also very similar to memcachedb, though unlike the latter, Redis provides you with the ability to define keys that are more than mere strings (as well as being able to handle multiple databases). At this early stage (beta 6), lists, sets and even basic master-slave replication are supported, but more features are in the works (including compression).

http://antoniocangiano.com/2009/03/11/introducing-redis-a-key-value-database/
http://code.google.com/p/redis/wiki/TwitterAlikeExample