GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: Everyone's favorite memcached plugin for ActiveRecord.
Homepage: http://errtheblog.com
Clone URL: git://github.com/defunkt/cache_fu.git
defunkt (author)
Fri May 02 09:28:29 -0700 2008
commit  535a23d139a08d54e7088c5ec8dc355dead8f973
tree    f69ec0f534efaacfe4b644d5e92b1d5239e89577
parent  3be030a826e5e7341e172c56258d115e429d32bc
cache_fu / defaults / memcached.yml.default
100644 35 lines (31 sloc) 0.583 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
35
defaults:
  ttl: 1800
  readonly: false
  urlencode: false
  c_threshold: 10000
  compression: true
  debug: false
  namespace: app
  sessions: false
  session_servers: false
  fragments: false
  memory: 64
  servers: localhost:11211
  benchmarking: true
  raise_errors: true
  fast_hash: false
  fastest_hash: false
 
development:
  sessions: false
  fragments: false
  servers: localhost:11211
 
# turn off caching
test:
  disabled: true
 
production:
  memory: 256
  benchmarking: false
  servers:
    - 192.185.254.121:11211
    - 192.185.254.138:11211
    - 192.185.254.160:11211