adamwiggins (owner)

Revisions

gist: 103442 Download_button fork
public
Public Clone URL: git://gist.github.com/103442.git
Embed All Files: show embed
local_memcached.rb #
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'rubygems'
require 'memcache'
 
class MemCache
  def self.cache
    @@cache ||= MemCache.new('localhost:11211')
  end
end
 
MemCache.cache['abc'] = 123
puts MemCache.cache['abc']