public
Description: Everyone's favorite memcached plugin for ActiveRecord.
Homepage: http://errtheblog.com
Clone URL: git://github.com/defunkt/cache_fu.git
Search Repo:
cache_fu / init.rb
100644 34 lines (26 sloc) 0.747 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
begin
  require 'memcache'
rescue LoadError
end
 
begin
  require 'memcached'
rescue LoadError
end
 
begin
  require 'mem_cache_with_consistent_hashing'
rescue LoadError
end
 
puts "=> You should be using the `memcache-client' gem. You're using RubyMemcache!" if Object.const_defined?(:RubyMemcache)
 
require 'acts_as_cached'
 
Object.send :include, ActsAsCached::Mixin
 
unless File.exists? config_file = File.join(RAILS_ROOT, 'config', 'memcached.yml')
  error = "No config file found. Make sure you used `script/plugin install' and have memcached.yml in your config directory."
  puts error
  logger.error error
  exit!
end
 
ActsAsCached.config = YAML.load(ERB.new(IO.read(config_file)).result)
 
begin
  require 'extensions'
rescue LoadError
end