Linux

RedisのCクライアント(hiredis)を試してみた

RedisのCクライアントであるhiredisをちょっと試してみた際のメモ。 使用した環境はCent OS 5.8(仮想OS)。 まずは以下のコマンドを実行してインストールを実施。特にエラーなく終了。 > git clone git://github.com/redis/hiredis.git > cd hiredis > make…

CentOSにredisをインストールした時のメモ

CentOS 5.8にredis 2.6.7をインストールした際にやった事をメモしておく。 > wget http://download.redis.io/redis-stable.tar.gz > tar xvzf redis-stable.tar.gz > cd redis-stable > make Redis Quick Start – Redisに従い、上記コマンドを実行すると以下…

Ubuntu LinuxでObjective-C

Ubuntu Linux 8.04でObjective-Cのプログラミングが出来るようにする方法。 1. build-essentialのインストール Ubuntu 8.04はデフォルトでgccはインストールされているものの、libc6-devが入っていないため、build-essentialをインストールする。 sudo apt-g…