タグ

redisに関するngmyのブックマーク (2)

  • Redis tutorial, April 2010 - by Simon Willison

    These slides and notes were originally written to accompany a three hour Redis tutorial I gave at the NoSQL Europe conference on the 22nd of April 2010. Please post any comments, feedback or corrections to the accompanying blog entry. You can find me online at simonwillison.net and @simonw. Redis is currently one of my favourite open source projects. I like it because it scales down as well as up

  • Node.jsが面白い件② redisを使う

    Node.jsが面白い件①の続きです。今回はredisの使い方について書いていきます。redisはオープンソースのインメモリKVSとして有名で、ディスクへの書き込みやトランザクション機能も提供する優れものです。クラスタに関してはまだ安定版が出ていませんが、単体ではとても簡単に利用できます。以下、Macでのインストール手順です。詳しくはredisのページを参照してください。 redisのダウンロードページからダウンロードする。 展開したディレクトリに移動しmakeを実行する。 同ディレクトリでmake testを実行する。 node.js側では以下のようにライブラリredis、hiredisをインストールします。例えば作業ディレクトリをRedisSampleとすると、以下のようにします。 > mkdir RedisSample > cd RedisSample > npm install h

  • 1