How to install redis with Ruby
精选 转载原文
http://snippets.aktagon.com/snippets/320-How-to-install-and-use-Redis-with-Ruby
1 git clone git://github.com/ezmobius/redis-rb.git
2 cd redis-rb/
3 rake redis:install
4 rake dtach:install
5 rake redis:start &
6 rake install
7
8 cat <<EOF >>test.rb
9 require 'rubygems'
10 require 'redis'
11
12 r = Redis.new
13
14 r.delete('foo')
15
16 p'set foo to "bar"'
17 r['foo'] = 'bar'
18
19 p 'value of foo'
20 p r['foo']
21 EOF
22
23 ruby test.rb
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
how to install curl
转自:[url]http://curl.haxx.se/docs/install.html[/url] &nb
linux asp web HTTP curl -
how to install keepassx on RHEL
最近我在寻找在RHEL6操作系统上使用的密码管理软件,我很快使用Google找到了我想要的答案——KeePassX。
休闲 安装keepassx keepassx password manager in 密码管理软件