お客様が developerWorks に初めてサインインすると、プロフィールが作成されます。プロフィールで選択した情報は公開されますが、いつでもその情報を編集できます。お客様の姓名(非表示設定にしていない限り)とディスプレイ・ネームは、投稿するコンテンツと... 続きを読む
Last Updated: 03 February 2011 redis redistogo Table of Contents Gem Setup Using from Rails Using from Sinatra Deploying to Heroku Other Resources Redis is a key-value store similar to memcached, but non-volatile; it supports lists, hashes, s... 続きを読む
TL;DR: Redis is fucking awesome. Redis is an extremely fast, atomic key-value store. It allows the storage of strings, sets, sorted sets, lists and hashes. Redis keeps all the data in RAM, much like Memcached but unlike Memcached, Redis perio... 続きを読む
古いキー oldname を新しいキー newname にリネームする。もし新しいキーがすでに存在する場合、上書きする。 続きを読む
前回、多機能高速なキーバリューストアRedisをインストールして、本体ソースについてきたクライアントで値を保存したり取得したりしてみました。 前回の記事 今回は同じ事をRubyからやってみたいと思います。 あと、最後の方でRuby+Redisでツイッターのタイムラ... 続きを読む
It's hard to believe that 10 months ago I wrote and released The Little MongoDB Book. Equally unbelievable has been the reception and feedback I've gotten. For a long time now I've wanted to write a similar book for Redis, but I just never fe... 続きを読む
2010/09/07 KVS(キー・バリュー・ストア)に分類されるオープンソースのRedisの新バージョン、「Redis 2.0.0」が2010年9月5日にリリースされた。Redisはmemcachedと同様にキーと値のペアをメモリ上に保持するKVSの一種だが、3つの際立った特徴がある。1つはハ... 続きを読む
I believe second INCR before DECRBY under section Commands operating on string values should be DECR actually. A minor copy-pasto. The Lists and Sets commands are fantastic! Got one question: is there a lock command like "ACQUIRELOCK db1", "R... 続きを読む