cachetastic 1.7.4 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README +31 -44
- data/bin/cachetastic_drb_server +115 -0
- data/doc/classes/ActiveRecord/Base.html +16 -16
- data/doc/classes/CGI/Session/CachetasticStore.html +2 -2
- data/doc/classes/Cachetastic/Adapters/Base.html +74 -67
- data/doc/classes/Cachetastic/Adapters/Drb.html +11 -11
- data/doc/classes/Cachetastic/Adapters/File.html +5 -5
- data/doc/classes/Cachetastic/Adapters/FileBase.html +45 -45
- data/doc/classes/Cachetastic/Adapters/HtmlFile.html +23 -23
- data/doc/classes/Cachetastic/Adapters/LocalMemory.html +51 -51
- data/doc/classes/Cachetastic/Adapters/Memcache.html +89 -89
- data/doc/classes/Cachetastic/Cacheable.html +22 -22
- data/doc/classes/Cachetastic/Cacheable/ClassAndInstanceMethods.html +23 -23
- data/doc/classes/Cachetastic/Cacheable/ClassOnlyMethods.html +23 -23
- data/doc/classes/Cachetastic/Caches/Base.html +170 -199
- data/doc/classes/Cachetastic/Caches/Base/RegisteredCaches.html +9 -9
- data/doc/classes/Cachetastic/Caches/MackSessionCache.html +2 -2
- data/doc/classes/Cachetastic/Caches/PageCache.html +2 -2
- data/doc/classes/Cachetastic/Caches/RailsSessionCache.html +9 -9
- data/doc/classes/Cachetastic/Connection.html +5 -5
- data/doc/classes/Cachetastic/Errors/UnsupportedAdapter.html +9 -9
- data/doc/classes/Cachetastic/Logger.html +23 -24
- data/doc/classes/Object.html +41 -3
- data/doc/created.rid +1 -1
- data/doc/files/README.html +33 -52
- data/doc/files/lib/{adapters/cachetastic_adapters_base_rb.html → cachetastic/adapters/base_rb.html} +6 -6
- data/doc/files/lib/{adapters/cachetastic_adapters_drb_rb.html → cachetastic/adapters/drb_rb.html} +5 -5
- data/doc/files/lib/{adapters/cachetastic_adapters_file_base_rb.html → cachetastic/adapters/file_base_rb.html} +5 -5
- data/doc/files/lib/{adapters/cachetastic_adapters_file_rb.html → cachetastic/adapters/file_rb.html} +5 -5
- data/doc/files/lib/{adapters/cachetastic_adapters_html_file_rb.html → cachetastic/adapters/html_file_rb.html} +5 -5
- data/doc/files/lib/{adapters/cachetastic_adapters_local_memory_rb.html → cachetastic/adapters/local_memory_rb.html} +5 -5
- data/doc/files/lib/{adapters/cachetastic_adapters_memcache_rb.html → cachetastic/adapters/memcache_rb.html} +5 -5
- data/doc/files/lib/{cachetastic_cacheable_rb.html → cachetastic/adapters/store_object_rb.html} +5 -5
- data/doc/files/lib/{ruby_extensions/object_rb.html → cachetastic/cacheable_rb.html} +4 -4
- data/doc/files/lib/{caches/cachetastic_caches_base_rb.html → cachetastic/caches/base_rb.html} +5 -5
- data/doc/files/lib/{cachetastic_connection_rb.html → cachetastic/caches/mack_session_cache_rb.html} +6 -6
- data/doc/files/lib/{caches/cachetastic_caches_page_cache_rb.html → cachetastic/caches/page_cache_rb.html} +5 -5
- data/doc/files/lib/{caches/cachetastic_caches_rails_session_cache_rb.html → cachetastic/caches/rails_session_cache_rb.html} +5 -5
- data/doc/files/lib/{caches/cachetastic_caches_mack_session_cache_rb.html → cachetastic/connection_rb.html} +5 -5
- data/doc/files/lib/{adapters/cachetastic_adapters_store_object_rb.html → cachetastic/errors/unsupported_adapter_rb.html} +5 -5
- data/doc/files/lib/{cachetastic_logger_rb.html → cachetastic/logger_rb.html} +5 -5
- data/doc/files/lib/{rails_extensions/cachetastic_active_record_base_rb.html → cachetastic/rails_extensions/active_record_base_rb.html} +5 -5
- data/doc/files/lib/{rails_extensions/cgi_session_cachetastic_store_rb.html → cachetastic/rails_extensions/cgi_session_store_rb.html} +5 -5
- data/doc/files/lib/cachetastic/ruby_extensions/object_rb.html +101 -0
- data/doc/files/lib/cachetastic_rb.html +34 -53
- data/doc/fr_file_index.html +19 -19
- data/doc/fr_method_index.html +63 -62
- data/lib/cachetastic.rb +35 -22
- data/lib/{adapters/cachetastic_adapters_base.rb → cachetastic/adapters/base.rb} +23 -30
- data/lib/{adapters/cachetastic_adapters_drb.rb → cachetastic/adapters/drb.rb} +2 -2
- data/lib/{adapters/cachetastic_adapters_file.rb → cachetastic/adapters/file.rb} +0 -0
- data/lib/{adapters/cachetastic_adapters_file_base.rb → cachetastic/adapters/file_base.rb} +1 -1
- data/lib/{adapters/cachetastic_adapters_html_file.rb → cachetastic/adapters/html_file.rb} +0 -0
- data/lib/{adapters/cachetastic_adapters_local_memory.rb → cachetastic/adapters/local_memory.rb} +0 -0
- data/lib/{adapters/cachetastic_adapters_memcache.rb → cachetastic/adapters/memcache.rb} +3 -3
- data/lib/{adapters/cachetastic_adapters_store_object.rb → cachetastic/adapters/store_object.rb} +0 -0
- data/lib/{cachetastic_cacheable.rb → cachetastic/cacheable.rb} +0 -0
- data/lib/{caches/cachetastic_caches_base.rb → cachetastic/caches/base.rb} +11 -13
- data/lib/{caches/cachetastic_caches_mack_session_cache.rb → cachetastic/caches/mack_session_cache.rb} +0 -0
- data/lib/{caches/cachetastic_caches_page_cache.rb → cachetastic/caches/page_cache.rb} +0 -0
- data/lib/{caches/cachetastic_caches_rails_session_cache.rb → cachetastic/caches/rails_session_cache.rb} +0 -0
- data/lib/{cachetastic_connection.rb → cachetastic/connection.rb} +1 -1
- data/lib/{errors/cachetastic_errors_unsupported_adapter.rb → cachetastic/errors/unsupported_adapter.rb} +0 -0
- data/lib/cachetastic/logger.rb +49 -0
- data/lib/{rails_extensions/cachetastic_active_record_base.rb → cachetastic/rails_extensions/active_record_base.rb} +0 -0
- data/lib/{rails_extensions/cgi_session_cachetastic_store.rb → cachetastic/rails_extensions/cgi_session_store.rb} +0 -0
- data/lib/{ruby_extensions → cachetastic/ruby_extensions}/object.rb +0 -0
- data/test/config.rb +30 -0
- data/test/drb_adapter_test.rb +14 -0
- data/test/memcache_adapter_test.rb +14 -0
- data/test/test_helper.rb +8 -22
- metadata +58 -47
- data/doc/files/lib/errors/cachetastic_errors_unsupported_adapter_rb.html +0 -101
- data/lib/cachetastic_logger.rb +0 -44
- data/test/config.yml +0 -71
- data/test/data_mapper_test.rb +0 -9
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
7
|
<head>
|
|
8
|
-
<title>File:
|
|
8
|
+
<title>File: connection.rb</title>
|
|
9
9
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
10
|
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
11
|
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
@@ -47,16 +47,16 @@
|
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
<div id="fileHeader">
|
|
50
|
-
<h1>
|
|
50
|
+
<h1>connection.rb</h1>
|
|
51
51
|
<table class="header-table">
|
|
52
52
|
<tr class="top-aligned-row">
|
|
53
53
|
<td><strong>Path:</strong></td>
|
|
54
|
-
<td>lib/
|
|
54
|
+
<td>lib/cachetastic/connection.rb
|
|
55
55
|
</td>
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>
|
|
59
|
+
<td>Thu Sep 18 10:48:18 -0400 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
|
|
71
71
|
<div id="description">
|
|
72
72
|
<p>
|
|
73
|
-
|
|
73
|
+
This class caches adapter objects for each cache in the system.
|
|
74
74
|
</p>
|
|
75
75
|
|
|
76
76
|
</div>
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
7
|
<head>
|
|
8
|
-
<title>File:
|
|
8
|
+
<title>File: unsupported_adapter.rb</title>
|
|
9
9
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
10
|
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
-
<link rel="stylesheet" href="
|
|
11
|
+
<link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
12
12
|
<script type="text/javascript">
|
|
13
13
|
// <![CDATA[
|
|
14
14
|
|
|
@@ -47,16 +47,16 @@
|
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
<div id="fileHeader">
|
|
50
|
-
<h1>
|
|
50
|
+
<h1>unsupported_adapter.rb</h1>
|
|
51
51
|
<table class="header-table">
|
|
52
52
|
<tr class="top-aligned-row">
|
|
53
53
|
<td><strong>Path:</strong></td>
|
|
54
|
-
<td>lib/
|
|
54
|
+
<td>lib/cachetastic/errors/unsupported_adapter.rb
|
|
55
55
|
</td>
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>
|
|
59
|
+
<td>Thu Sep 18 10:48:18 -0400 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
7
|
<head>
|
|
8
|
-
<title>File:
|
|
8
|
+
<title>File: logger.rb</title>
|
|
9
9
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
10
|
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
-
<link rel="stylesheet" href="
|
|
11
|
+
<link rel="stylesheet" href="../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
12
12
|
<script type="text/javascript">
|
|
13
13
|
// <![CDATA[
|
|
14
14
|
|
|
@@ -47,16 +47,16 @@
|
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
<div id="fileHeader">
|
|
50
|
-
<h1>
|
|
50
|
+
<h1>logger.rb</h1>
|
|
51
51
|
<table class="header-table">
|
|
52
52
|
<tr class="top-aligned-row">
|
|
53
53
|
<td><strong>Path:</strong></td>
|
|
54
|
-
<td>lib/
|
|
54
|
+
<td>lib/cachetastic/logger.rb
|
|
55
55
|
</td>
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>
|
|
59
|
+
<td>Thu Sep 18 10:48:18 -0400 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
7
|
<head>
|
|
8
|
-
<title>File:
|
|
8
|
+
<title>File: active_record_base.rb</title>
|
|
9
9
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
10
|
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
-
<link rel="stylesheet" href="
|
|
11
|
+
<link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
12
12
|
<script type="text/javascript">
|
|
13
13
|
// <![CDATA[
|
|
14
14
|
|
|
@@ -47,16 +47,16 @@
|
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
<div id="fileHeader">
|
|
50
|
-
<h1>
|
|
50
|
+
<h1>active_record_base.rb</h1>
|
|
51
51
|
<table class="header-table">
|
|
52
52
|
<tr class="top-aligned-row">
|
|
53
53
|
<td><strong>Path:</strong></td>
|
|
54
|
-
<td>lib/rails_extensions/
|
|
54
|
+
<td>lib/cachetastic/rails_extensions/active_record_base.rb
|
|
55
55
|
</td>
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>
|
|
59
|
+
<td>Thu Sep 18 10:48:18 -0400 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
|
|
6
6
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
7
|
<head>
|
|
8
|
-
<title>File:
|
|
8
|
+
<title>File: cgi_session_store.rb</title>
|
|
9
9
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
10
|
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
-
<link rel="stylesheet" href="
|
|
11
|
+
<link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
12
12
|
<script type="text/javascript">
|
|
13
13
|
// <![CDATA[
|
|
14
14
|
|
|
@@ -47,16 +47,16 @@
|
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
<div id="fileHeader">
|
|
50
|
-
<h1>
|
|
50
|
+
<h1>cgi_session_store.rb</h1>
|
|
51
51
|
<table class="header-table">
|
|
52
52
|
<tr class="top-aligned-row">
|
|
53
53
|
<td><strong>Path:</strong></td>
|
|
54
|
-
<td>lib/rails_extensions/
|
|
54
|
+
<td>lib/cachetastic/rails_extensions/cgi_session_store.rb
|
|
55
55
|
</td>
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>
|
|
59
|
+
<td>Thu Sep 18 10:48:18 -0400 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
2
|
+
<!DOCTYPE html
|
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
4
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
5
|
+
|
|
6
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
7
|
+
<head>
|
|
8
|
+
<title>File: object.rb</title>
|
|
9
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
10
|
+
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
|
11
|
+
<link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" />
|
|
12
|
+
<script type="text/javascript">
|
|
13
|
+
// <![CDATA[
|
|
14
|
+
|
|
15
|
+
function popupCode( url ) {
|
|
16
|
+
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
function toggleCode( id ) {
|
|
20
|
+
if ( document.getElementById )
|
|
21
|
+
elem = document.getElementById( id );
|
|
22
|
+
else if ( document.all )
|
|
23
|
+
elem = eval( "document.all." + id );
|
|
24
|
+
else
|
|
25
|
+
return false;
|
|
26
|
+
|
|
27
|
+
elemStyle = elem.style;
|
|
28
|
+
|
|
29
|
+
if ( elemStyle.display != "block" ) {
|
|
30
|
+
elemStyle.display = "block"
|
|
31
|
+
} else {
|
|
32
|
+
elemStyle.display = "none"
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Make codeblocks hidden by default
|
|
39
|
+
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
|
40
|
+
|
|
41
|
+
// ]]>
|
|
42
|
+
</script>
|
|
43
|
+
|
|
44
|
+
</head>
|
|
45
|
+
<body>
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
<div id="fileHeader">
|
|
50
|
+
<h1>object.rb</h1>
|
|
51
|
+
<table class="header-table">
|
|
52
|
+
<tr class="top-aligned-row">
|
|
53
|
+
<td><strong>Path:</strong></td>
|
|
54
|
+
<td>lib/cachetastic/ruby_extensions/object.rb
|
|
55
|
+
</td>
|
|
56
|
+
</tr>
|
|
57
|
+
<tr class="top-aligned-row">
|
|
58
|
+
<td><strong>Last Update:</strong></td>
|
|
59
|
+
<td>Thu Sep 18 10:48:18 -0400 2008</td>
|
|
60
|
+
</tr>
|
|
61
|
+
</table>
|
|
62
|
+
</div>
|
|
63
|
+
<!-- banner header -->
|
|
64
|
+
|
|
65
|
+
<div id="bodyContent">
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
<div id="contextContent">
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
</div>
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
</div>
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
<!-- if includes -->
|
|
80
|
+
|
|
81
|
+
<div id="section">
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
<!-- if method_list -->
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
</div>
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
<div id="validator-badges">
|
|
97
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
|
98
|
+
</div>
|
|
99
|
+
|
|
100
|
+
</body>
|
|
101
|
+
</html>
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>Tue
|
|
59
|
+
<td>Tue Sep 30 11:03:47 -0400 2008</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -71,68 +71,49 @@
|
|
|
71
71
|
<div id="description">
|
|
72
72
|
<h1>Configuration:</h1>
|
|
73
73
|
<pre>
|
|
74
|
-
cachetastic_default_options:
|
|
75
74
|
# this will dump into the log, configuration info for each cache, as well as the .inspect
|
|
76
75
|
# for each object returned from the cache
|
|
77
|
-
debug
|
|
76
|
+
configatron.cachetastic_default_options.debug = false
|
|
77
|
+
|
|
78
78
|
# this is the type of file store to be used for this cache.
|
|
79
79
|
# more adapters can be developed and plugged in as desired
|
|
80
|
-
adapter:
|
|
80
|
+
configatron.cachetastic_default_options.adapter = :local_memory # local_memory | memcache | file | drb | html_file (default: local_memory)
|
|
81
|
+
|
|
81
82
|
# this will marshall objects into and out of the store.
|
|
82
|
-
marshall_method:
|
|
83
|
+
configatron.cachetastic_default_options.marshall_method = :none # none | yaml | ruby (default: none)
|
|
84
|
+
|
|
83
85
|
# this sets how long objects will live in the cache before they are auto expired.
|
|
84
|
-
default_expiry
|
|
86
|
+
configatron.cachetastic_default_options.default_expiry = 86400 # time in seconds (default: 24 hours)
|
|
87
|
+
|
|
85
88
|
# when setting objects into the cache the expiry_swing is +/- to the expiry time.
|
|
86
89
|
# example: if the expiry time is 1 hour, and the swing is 15 minutes,
|
|
87
90
|
# objects will go into the cache with an expiry time sometime between 45 mins and 75 mins.
|
|
88
|
-
expiry_swing
|
|
91
|
+
configatron.cachetastic_default_options.expiry_swing = 60 * 15 # time in seconds (default: 0)
|
|
92
|
+
|
|
89
93
|
# these options get passed on directly to the store.
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
dir: /cachetastic/caches/ # absolute path to the directory where caches should be stored.
|
|
98
|
-
store_options: # listed below are the options for drb
|
|
99
|
-
host: "druby://127.0.0.1:61676"
|
|
100
|
-
# configure logging for this cache:
|
|
101
|
-
logging:
|
|
102
|
-
# n number of logs can be configured for a cache
|
|
103
|
-
# their names can be anything you want, it's doesn't matter
|
|
104
|
-
logger_1:
|
|
105
|
-
# this sets the type of log you want to write to.
|
|
106
|
-
# right now the only two options are file and console
|
|
107
|
-
type: file # console | file (default: none)
|
|
108
|
-
# if the type is file, you need to configure where the log file is to be written.
|
|
109
|
-
file: log/memcached.log # relative | absolute path to log file
|
|
110
|
-
# this sets the level of logging for this cache
|
|
111
|
-
level: info # debug | info | warn | error | fatal (default: info)
|
|
112
|
-
logger_2:
|
|
113
|
-
# this sets the type of log you want to write to.
|
|
114
|
-
# right now the only two options are file and console
|
|
115
|
-
type: console # console | file (default: none)
|
|
116
|
-
# this sets the level of logging for this cache
|
|
117
|
-
level: error # debug | info | warn | error | fatal (default: info)
|
|
94
|
+
# listed below are options for memcache:
|
|
95
|
+
configatron.cachetastic_default_options.store_options.c_threshold = "10_000"
|
|
96
|
+
configatron.cachetastic_default_options.store_options.compression = true
|
|
97
|
+
configatron.cachetastic_default_options.store_options.debug = false
|
|
98
|
+
configatron.cachetastic_default_options.store_options.readonly = false
|
|
99
|
+
configatron.cachetastic_default_options.store_options.urlencode = false
|
|
100
|
+
|
|
118
101
|
# set the servers to be used for memcache
|
|
119
|
-
servers:
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
cachetastic_caches_rails_session_cache_options:
|
|
135
|
-
default_expiry: <%= 30.minutes %>
|
|
102
|
+
configatron.cachetastic_default_options.servers = ["127.0.0.1:11211"] # ip:port used for memcache
|
|
103
|
+
|
|
104
|
+
# listed below are the options for file:
|
|
105
|
+
configatron.cachetastic_default_options.store_options.dir = "/cachetastic/caches"
|
|
106
|
+
|
|
107
|
+
# listed below are the options for drb:
|
|
108
|
+
configatron.cachetastic_default_options.servers = ["druby://127.0.0.1:61676"]
|
|
109
|
+
|
|
110
|
+
# configure logging for this cache
|
|
111
|
+
# n number of logs can be configured for a cache
|
|
112
|
+
log_1 = Logger.new(STDOUT)
|
|
113
|
+
log_1.level = Logger::DEBUG
|
|
114
|
+
log_2 = Logger.new("log/cachetastic.log")
|
|
115
|
+
log_2.level = Logger::ERROR
|
|
116
|
+
configatron.cachetastic_default_options.logger = [log_1, log_2]
|
|
136
117
|
</pre>
|
|
137
118
|
<h1>Cachetastic::Drb::Server</h1>
|
|
138
119
|
<p>
|
|
@@ -186,7 +167,7 @@ The server takes to command line parameters: -h <host> -p
|
|
|
186
167
|
zlib
|
|
187
168
|
pp
|
|
188
169
|
drb
|
|
189
|
-
|
|
170
|
+
configatron
|
|
190
171
|
memcache
|
|
191
172
|
</div>
|
|
192
173
|
</div>
|
data/doc/fr_file_index.html
CHANGED
|
@@ -21,26 +21,26 @@
|
|
|
21
21
|
<h1 class="section-bar">Files</h1>
|
|
22
22
|
<div id="index-entries">
|
|
23
23
|
<a href="files/README.html">README</a><br />
|
|
24
|
-
<a href="files/lib/adapters/cachetastic_adapters_base_rb.html">lib/adapters/cachetastic_adapters_base.rb</a><br />
|
|
25
|
-
<a href="files/lib/adapters/cachetastic_adapters_drb_rb.html">lib/adapters/cachetastic_adapters_drb.rb</a><br />
|
|
26
|
-
<a href="files/lib/adapters/cachetastic_adapters_file_rb.html">lib/adapters/cachetastic_adapters_file.rb</a><br />
|
|
27
|
-
<a href="files/lib/adapters/cachetastic_adapters_file_base_rb.html">lib/adapters/cachetastic_adapters_file_base.rb</a><br />
|
|
28
|
-
<a href="files/lib/adapters/cachetastic_adapters_html_file_rb.html">lib/adapters/cachetastic_adapters_html_file.rb</a><br />
|
|
29
|
-
<a href="files/lib/adapters/cachetastic_adapters_local_memory_rb.html">lib/adapters/cachetastic_adapters_local_memory.rb</a><br />
|
|
30
|
-
<a href="files/lib/adapters/cachetastic_adapters_memcache_rb.html">lib/adapters/cachetastic_adapters_memcache.rb</a><br />
|
|
31
|
-
<a href="files/lib/adapters/cachetastic_adapters_store_object_rb.html">lib/adapters/cachetastic_adapters_store_object.rb</a><br />
|
|
32
|
-
<a href="files/lib/caches/cachetastic_caches_base_rb.html">lib/caches/cachetastic_caches_base.rb</a><br />
|
|
33
|
-
<a href="files/lib/caches/cachetastic_caches_mack_session_cache_rb.html">lib/caches/cachetastic_caches_mack_session_cache.rb</a><br />
|
|
34
|
-
<a href="files/lib/caches/cachetastic_caches_page_cache_rb.html">lib/caches/cachetastic_caches_page_cache.rb</a><br />
|
|
35
|
-
<a href="files/lib/caches/cachetastic_caches_rails_session_cache_rb.html">lib/caches/cachetastic_caches_rails_session_cache.rb</a><br />
|
|
36
24
|
<a href="files/lib/cachetastic_rb.html">lib/cachetastic.rb</a><br />
|
|
37
|
-
<a href="files/lib/
|
|
38
|
-
<a href="files/lib/
|
|
39
|
-
<a href="files/lib/
|
|
40
|
-
<a href="files/lib/
|
|
41
|
-
<a href="files/lib/
|
|
42
|
-
<a href="files/lib/
|
|
43
|
-
<a href="files/lib/
|
|
25
|
+
<a href="files/lib/cachetastic/adapters/base_rb.html">lib/cachetastic/adapters/base.rb</a><br />
|
|
26
|
+
<a href="files/lib/cachetastic/adapters/drb_rb.html">lib/cachetastic/adapters/drb.rb</a><br />
|
|
27
|
+
<a href="files/lib/cachetastic/adapters/file_rb.html">lib/cachetastic/adapters/file.rb</a><br />
|
|
28
|
+
<a href="files/lib/cachetastic/adapters/file_base_rb.html">lib/cachetastic/adapters/file_base.rb</a><br />
|
|
29
|
+
<a href="files/lib/cachetastic/adapters/html_file_rb.html">lib/cachetastic/adapters/html_file.rb</a><br />
|
|
30
|
+
<a href="files/lib/cachetastic/adapters/local_memory_rb.html">lib/cachetastic/adapters/local_memory.rb</a><br />
|
|
31
|
+
<a href="files/lib/cachetastic/adapters/memcache_rb.html">lib/cachetastic/adapters/memcache.rb</a><br />
|
|
32
|
+
<a href="files/lib/cachetastic/adapters/store_object_rb.html">lib/cachetastic/adapters/store_object.rb</a><br />
|
|
33
|
+
<a href="files/lib/cachetastic/cacheable_rb.html">lib/cachetastic/cacheable.rb</a><br />
|
|
34
|
+
<a href="files/lib/cachetastic/caches/base_rb.html">lib/cachetastic/caches/base.rb</a><br />
|
|
35
|
+
<a href="files/lib/cachetastic/caches/mack_session_cache_rb.html">lib/cachetastic/caches/mack_session_cache.rb</a><br />
|
|
36
|
+
<a href="files/lib/cachetastic/caches/page_cache_rb.html">lib/cachetastic/caches/page_cache.rb</a><br />
|
|
37
|
+
<a href="files/lib/cachetastic/caches/rails_session_cache_rb.html">lib/cachetastic/caches/rails_session_cache.rb</a><br />
|
|
38
|
+
<a href="files/lib/cachetastic/connection_rb.html">lib/cachetastic/connection.rb</a><br />
|
|
39
|
+
<a href="files/lib/cachetastic/errors/unsupported_adapter_rb.html">lib/cachetastic/errors/unsupported_adapter.rb</a><br />
|
|
40
|
+
<a href="files/lib/cachetastic/logger_rb.html">lib/cachetastic/logger.rb</a><br />
|
|
41
|
+
<a href="files/lib/cachetastic/rails_extensions/active_record_base_rb.html">lib/cachetastic/rails_extensions/active_record_base.rb</a><br />
|
|
42
|
+
<a href="files/lib/cachetastic/rails_extensions/cgi_session_store_rb.html">lib/cachetastic/rails_extensions/cgi_session_store.rb</a><br />
|
|
43
|
+
<a href="files/lib/cachetastic/ruby_extensions/object_rb.html">lib/cachetastic/ruby_extensions/object.rb</a><br />
|
|
44
44
|
</div>
|
|
45
45
|
</div>
|
|
46
46
|
</body>
|
data/doc/fr_method_index.html
CHANGED
|
@@ -20,80 +20,81 @@
|
|
|
20
20
|
<div id="index">
|
|
21
21
|
<h1 class="section-bar">Methods</h1>
|
|
22
22
|
<div id="index-entries">
|
|
23
|
-
<a href="classes/Cachetastic/Caches/Base.html#
|
|
24
|
-
<a href="classes/Cachetastic/Caches/Base.html#
|
|
25
|
-
<a href="classes/Cachetastic/Caches/Base.html#
|
|
26
|
-
<a href="classes/Cachetastic/Cacheable/ClassAndInstanceMethods.html#
|
|
27
|
-
<a href="classes/Cachetastic/Caches/Base.html#
|
|
28
|
-
<a href="classes/Cachetastic/Cacheable.html#
|
|
29
|
-
<a href="classes/Cachetastic/Cacheable/ClassAndInstanceMethods.html#
|
|
23
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000055">adapter (Cachetastic::Caches::Base)</a><br />
|
|
24
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000058">adapter_supported? (Cachetastic::Caches::Base)</a><br />
|
|
25
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000048">all_registered_caches (Cachetastic::Caches::Base)</a><br />
|
|
26
|
+
<a href="classes/Cachetastic/Cacheable/ClassAndInstanceMethods.html#M000068">cache_class (Cachetastic::Cacheable::ClassAndInstanceMethods)</a><br />
|
|
27
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000054">cache_name (Cachetastic::Caches::Base)</a><br />
|
|
28
|
+
<a href="classes/Cachetastic/Cacheable.html#M000063">cache_self (Cachetastic::Cacheable)</a><br />
|
|
29
|
+
<a href="classes/Cachetastic/Cacheable/ClassAndInstanceMethods.html#M000069">cacher (Cachetastic::Cacheable::ClassAndInstanceMethods)</a><br />
|
|
30
30
|
<a href="classes/Object.html#M000001">cachetastic_key (Object)</a><br />
|
|
31
|
-
<a href="classes/ActiveRecord/Base.html#
|
|
32
|
-
<a href="classes/Cachetastic/Caches/Base.html#
|
|
33
|
-
<a href="classes/Cachetastic/Adapters/Base.html#
|
|
34
|
-
<a href="classes/Cachetastic/
|
|
31
|
+
<a href="classes/ActiveRecord/Base.html#M000074">cachetastic_key (ActiveRecord::Base)</a><br />
|
|
32
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000061">calculate_expiry_time (Cachetastic::Caches::Base)</a><br />
|
|
33
|
+
<a href="classes/Cachetastic/Adapters/Base.html#M000036">configuration (Cachetastic::Adapters::Base)</a><br />
|
|
34
|
+
<a href="classes/Cachetastic/Adapters/Base.html#M000035">configuration (Cachetastic::Adapters::Base)</a><br />
|
|
35
|
+
<a href="classes/Cachetastic/Adapters/Base.html#M000033">debug? (Cachetastic::Adapters::Base)</a><br />
|
|
35
36
|
<a href="classes/Cachetastic/Adapters/Drb.html#M000042">delete (Cachetastic::Adapters::Drb)</a><br />
|
|
36
|
-
<a href="classes/Cachetastic/Adapters/
|
|
37
|
-
<a href="classes/Cachetastic/Adapters/
|
|
38
|
-
<a href="classes/Cachetastic/
|
|
39
|
-
<a href="classes/Cachetastic/
|
|
40
|
-
<a href="classes/Cachetastic/
|
|
37
|
+
<a href="classes/Cachetastic/Adapters/LocalMemory.html#M000024">delete (Cachetastic::Adapters::LocalMemory)</a><br />
|
|
38
|
+
<a href="classes/Cachetastic/Adapters/FileBase.html#M000029">delete (Cachetastic::Adapters::FileBase)</a><br />
|
|
39
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000051">delete (Cachetastic::Caches::Base)</a><br />
|
|
40
|
+
<a href="classes/Cachetastic/Adapters/Memcache.html#M000009">delete (Cachetastic::Adapters::Memcache)</a><br />
|
|
41
|
+
<a href="classes/Cachetastic/Cacheable/ClassOnlyMethods.html#M000066">delete_from_cache (Cachetastic::Cacheable::ClassOnlyMethods)</a><br />
|
|
42
|
+
<a href="classes/Cachetastic/Adapters/Memcache.html#M000011">expire_all (Cachetastic::Adapters::Memcache)</a><br />
|
|
43
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000052">expire_all (Cachetastic::Caches::Base)</a><br />
|
|
44
|
+
<a href="classes/Cachetastic/Adapters/LocalMemory.html#M000021">expire_all (Cachetastic::Adapters::LocalMemory)</a><br />
|
|
45
|
+
<a href="classes/Cachetastic/Adapters/FileBase.html#M000030">expire_all (Cachetastic::Adapters::FileBase)</a><br />
|
|
41
46
|
<a href="classes/Cachetastic/Adapters/Drb.html#M000039">expire_all (Cachetastic::Adapters::Drb)</a><br />
|
|
42
|
-
<a href="classes/Cachetastic/Cacheable/ClassAndInstanceMethods.html#
|
|
43
|
-
<a href="classes/Cachetastic/Caches/Base.html#M000060">expire_all (Cachetastic::Caches::Base)</a><br />
|
|
44
|
-
<a href="classes/Cachetastic/Adapters/LocalMemory.html#M000022">expire_all (Cachetastic::Adapters::LocalMemory)</a><br />
|
|
45
|
-
<a href="classes/Cachetastic/Adapters/Memcache.html#M000012">expire_all (Cachetastic::Adapters::Memcache)</a><br />
|
|
46
|
-
<a href="classes/Cachetastic/Adapters/LocalMemory.html#M000023">get (Cachetastic::Adapters::LocalMemory)</a><br />
|
|
47
|
-
<a href="classes/Cachetastic/Adapters/Memcache.html#M000011">get (Cachetastic::Adapters::Memcache)</a><br />
|
|
48
|
-
<a href="classes/Cachetastic/Caches/Base.html#M000057">get (Cachetastic::Caches::Base)</a><br />
|
|
47
|
+
<a href="classes/Cachetastic/Cacheable/ClassAndInstanceMethods.html#M000070">expire_all (Cachetastic::Cacheable::ClassAndInstanceMethods)</a><br />
|
|
49
48
|
<a href="classes/Cachetastic/Adapters/File.html#M000044">get (Cachetastic::Adapters::File)</a><br />
|
|
50
|
-
<a href="classes/Cachetastic/Connection.html#M000073">get (Cachetastic::Connection)</a><br />
|
|
51
49
|
<a href="classes/Cachetastic/Adapters/Drb.html#M000040">get (Cachetastic::Adapters::Drb)</a><br />
|
|
52
|
-
<a href="classes/Cachetastic/Adapters/HtmlFile.html#
|
|
53
|
-
<a href="classes/Cachetastic/
|
|
54
|
-
<a href="classes/
|
|
55
|
-
<a href="classes/Cachetastic/Adapters/
|
|
56
|
-
<a href="classes/Cachetastic/
|
|
57
|
-
<a href="classes/Cachetastic/
|
|
58
|
-
<a href="classes/
|
|
59
|
-
<a href="classes/Cachetastic/
|
|
60
|
-
<a href="classes/Cachetastic/
|
|
61
|
-
<a href="classes/Cachetastic/Adapters/Memcache.html#
|
|
62
|
-
<a href="classes/Cachetastic/
|
|
63
|
-
<a href="classes/Cachetastic/
|
|
64
|
-
<a href="classes/Cachetastic/
|
|
50
|
+
<a href="classes/Cachetastic/Adapters/HtmlFile.html#M000004">get (Cachetastic::Adapters::HtmlFile)</a><br />
|
|
51
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000049">get (Cachetastic::Caches::Base)</a><br />
|
|
52
|
+
<a href="classes/Cachetastic/Adapters/Memcache.html#M000010">get (Cachetastic::Adapters::Memcache)</a><br />
|
|
53
|
+
<a href="classes/Cachetastic/Adapters/LocalMemory.html#M000022">get (Cachetastic::Adapters::LocalMemory)</a><br />
|
|
54
|
+
<a href="classes/Cachetastic/Connection.html#M000073">get (Cachetastic::Connection)</a><br />
|
|
55
|
+
<a href="classes/Cachetastic/Cacheable/ClassOnlyMethods.html#M000065">get_from_cache (Cachetastic::Cacheable::ClassOnlyMethods)</a><br />
|
|
56
|
+
<a href="classes/ActiveRecord/Base.html#M000075">get_from_cache (ActiveRecord::Base)</a><br />
|
|
57
|
+
<a href="classes/Cachetastic/Adapters/Memcache.html#M000018">get_version (Cachetastic::Adapters::Memcache)</a><br />
|
|
58
|
+
<a href="classes/Cachetastic/Adapters/Memcache.html#M000017">increment_version (Cachetastic::Adapters::Memcache)</a><br />
|
|
59
|
+
<a href="classes/Cachetastic/Adapters/Memcache.html#M000012">inspect (Cachetastic::Adapters::Memcache)</a><br />
|
|
60
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000056">logger (Cachetastic::Caches::Base)</a><br />
|
|
61
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000059">marshall (Cachetastic::Caches::Base)</a><br />
|
|
62
|
+
<a href="classes/Cachetastic/Adapters/Memcache.html#M000015">namespace (Cachetastic::Adapters::Memcache)</a><br />
|
|
63
|
+
<a href="classes/Object.html#M000002">needs_method (Object)</a><br />
|
|
64
|
+
<a href="classes/Cachetastic/Errors/UnsupportedAdapter.html#M000003">new (Cachetastic::Errors::UnsupportedAdapter)</a><br />
|
|
65
|
+
<a href="classes/Cachetastic/Logger.html#M000071">new (Cachetastic::Logger)</a><br />
|
|
66
|
+
<a href="classes/Cachetastic/Caches/Base/RegisteredCaches.html#M000062">new (Cachetastic::Caches::Base::RegisteredCaches)</a><br />
|
|
67
|
+
<a href="classes/Cachetastic/Adapters/Base.html#M000032">new (Cachetastic::Adapters::Base)</a><br />
|
|
65
68
|
<a href="classes/Cachetastic/Connection.html#M000072">new (Cachetastic::Connection)</a><br />
|
|
66
|
-
<a href="classes/Cachetastic/
|
|
67
|
-
<a href="classes/Cachetastic/Adapters/
|
|
68
|
-
<a href="classes/Cachetastic/Caches/Base.html#M000061">populate_all (Cachetastic::Caches::Base)</a><br />
|
|
69
|
+
<a href="classes/Cachetastic/Adapters/Memcache.html#M000016">ns_versions (Cachetastic::Adapters::Memcache)</a><br />
|
|
70
|
+
<a href="classes/Cachetastic/Adapters/LocalMemory.html#M000023">set (Cachetastic::Adapters::LocalMemory)</a><br />
|
|
69
71
|
<a href="classes/Cachetastic/Adapters/Drb.html#M000041">set (Cachetastic::Adapters::Drb)</a><br />
|
|
70
|
-
<a href="classes/Cachetastic/
|
|
72
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000050">set (Cachetastic::Caches::Base)</a><br />
|
|
73
|
+
<a href="classes/Cachetastic/Adapters/Memcache.html#M000008">set (Cachetastic::Adapters::Memcache)</a><br />
|
|
71
74
|
<a href="classes/Cachetastic/Adapters/File.html#M000045">set (Cachetastic::Adapters::File)</a><br />
|
|
72
|
-
<a href="classes/Cachetastic/Adapters/HtmlFile.html#
|
|
73
|
-
<a href="classes/Cachetastic/
|
|
74
|
-
<a href="classes/Cachetastic/Adapters/
|
|
75
|
-
<a href="classes/Cachetastic/
|
|
75
|
+
<a href="classes/Cachetastic/Adapters/HtmlFile.html#M000005">set (Cachetastic::Adapters::HtmlFile)</a><br />
|
|
76
|
+
<a href="classes/Cachetastic/Cacheable/ClassOnlyMethods.html#M000067">set_into_cache (Cachetastic::Cacheable::ClassOnlyMethods)</a><br />
|
|
77
|
+
<a href="classes/Cachetastic/Adapters/FileBase.html#M000026">setup (Cachetastic::Adapters::FileBase)</a><br />
|
|
78
|
+
<a href="classes/Cachetastic/Adapters/LocalMemory.html#M000020">setup (Cachetastic::Adapters::LocalMemory)</a><br />
|
|
79
|
+
<a href="classes/Cachetastic/Adapters/Memcache.html#M000007">setup (Cachetastic::Adapters::Memcache)</a><br />
|
|
76
80
|
<a href="classes/Cachetastic/Adapters/Drb.html#M000038">setup (Cachetastic::Adapters::Drb)</a><br />
|
|
77
|
-
<a href="classes/Cachetastic/Adapters/
|
|
78
|
-
<a href="classes/Cachetastic/Adapters/
|
|
79
|
-
<a href="classes/Cachetastic/Adapters/Memcache.html#
|
|
81
|
+
<a href="classes/Cachetastic/Adapters/Base.html#M000034">stats (Cachetastic::Adapters::Base)</a><br />
|
|
82
|
+
<a href="classes/Cachetastic/Adapters/LocalMemory.html#M000025">stats (Cachetastic::Adapters::LocalMemory)</a><br />
|
|
83
|
+
<a href="classes/Cachetastic/Adapters/Memcache.html#M000014">stats (Cachetastic::Adapters::Memcache)</a><br />
|
|
84
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000053">stats (Cachetastic::Caches::Base)</a><br />
|
|
80
85
|
<a href="classes/Cachetastic/Adapters/Drb.html#M000043">stats (Cachetastic::Adapters::Drb)</a><br />
|
|
81
|
-
<a href="classes/Cachetastic/Adapters/
|
|
82
|
-
<a href="classes/Cachetastic/Adapters/
|
|
83
|
-
<a href="classes/Cachetastic/Adapters/
|
|
84
|
-
<a href="classes/Cachetastic/Caches/Base.html#M000062">stats (Cachetastic::Caches::Base)</a><br />
|
|
85
|
-
<a href="classes/Cachetastic/Adapters/Base.html#M000035">stats (Cachetastic::Adapters::Base)</a><br />
|
|
86
|
+
<a href="classes/Cachetastic/Adapters/FileBase.html#M000028">stats (Cachetastic::Adapters::FileBase)</a><br />
|
|
87
|
+
<a href="classes/Cachetastic/Adapters/HtmlFile.html#M000006">store_file_name (Cachetastic::Adapters::HtmlFile)</a><br />
|
|
88
|
+
<a href="classes/Cachetastic/Adapters/FileBase.html#M000031">store_file_name (Cachetastic::Adapters::FileBase)</a><br />
|
|
86
89
|
<a href="classes/Cachetastic/Adapters/File.html#M000046">store_file_name (Cachetastic::Adapters::File)</a><br />
|
|
87
|
-
<a href="classes/Cachetastic/
|
|
88
|
-
<a href="classes/Cachetastic/
|
|
89
|
-
<a href="classes/Cachetastic/
|
|
90
|
-
<a href="classes/Cachetastic/Caches/Base.html#
|
|
91
|
-
<a href="classes/Cachetastic/
|
|
92
|
-
<a href="classes/Cachetastic/
|
|
93
|
-
<a href="classes/Cachetastic/Adapters/FileBase.html#M000028">valid? (Cachetastic::Adapters::FileBase)</a><br />
|
|
94
|
-
<a href="classes/Cachetastic/Adapters/LocalMemory.html#M000020">valid? (Cachetastic::Adapters::LocalMemory)</a><br />
|
|
90
|
+
<a href="classes/Cachetastic/Cacheable.html#M000064">uncache_self (Cachetastic::Cacheable)</a><br />
|
|
91
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000060">unmarshall (Cachetastic::Caches::Base)</a><br />
|
|
92
|
+
<a href="classes/Cachetastic/Caches/RailsSessionCache.html#M000047">unsupported_adapters (Cachetastic::Caches::RailsSessionCache)</a><br />
|
|
93
|
+
<a href="classes/Cachetastic/Caches/Base.html#M000057">unsupported_adapters (Cachetastic::Caches::Base)</a><br />
|
|
94
|
+
<a href="classes/Cachetastic/Adapters/FileBase.html#M000027">valid? (Cachetastic::Adapters::FileBase)</a><br />
|
|
95
|
+
<a href="classes/Cachetastic/Adapters/LocalMemory.html#M000019">valid? (Cachetastic::Adapters::LocalMemory)</a><br />
|
|
95
96
|
<a href="classes/Cachetastic/Adapters/Drb.html#M000037">valid? (Cachetastic::Adapters::Drb)</a><br />
|
|
96
|
-
<a href="classes/Cachetastic/Adapters/Memcache.html#
|
|
97
|
+
<a href="classes/Cachetastic/Adapters/Memcache.html#M000013">valid? (Cachetastic::Adapters::Memcache)</a><br />
|
|
97
98
|
</div>
|
|
98
99
|
</div>
|
|
99
100
|
</body>
|