io_shuten 0.1.0.dev6 → 0.1.0.dev7
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/doc/IO_shuten/Base.html +78 -99
- data/doc/IO_shuten/Buffer.html +130 -150
- data/doc/IO_shuten/Errors/FileAccessError.html +4 -5
- data/doc/IO_shuten/Errors/FileNotFoundError.html +4 -5
- data/doc/IO_shuten/Errors/NodeExistsError.html +4 -5
- data/doc/IO_shuten/Errors/NodeNameError.html +4 -5
- data/doc/IO_shuten/Errors/NodeNotFoundError.html +4 -5
- data/doc/IO_shuten/Errors/NotYetImplemented.html +4 -5
- data/doc/IO_shuten/Errors.html +4 -5
- data/doc/IO_shuten/Memory.html +127 -147
- data/doc/IO_shuten/Mongo.html +6 -8
- data/doc/IO_shuten/Redis.html +164 -263
- data/doc/IO_shuten/Stores/BaseContainer.html +377 -0
- data/doc/IO_shuten/Stores/Mongo/Collection.html +4 -5
- data/doc/IO_shuten/Stores/Mongo/GridFS.html +4 -5
- data/doc/IO_shuten/Stores/Mongo.html +4 -5
- data/doc/IO_shuten/Stores/Redis/Container.html +778 -0
- data/doc/IO_shuten/Stores/Redis/KeyValue/Collection.html +504 -0
- data/doc/IO_shuten/Stores/Redis/KeyValue/Single.html +438 -0
- data/doc/IO_shuten/Stores/Redis/KeyValue.html +176 -7
- data/doc/IO_shuten/Stores/Redis/PubSub.html +140 -5
- data/doc/IO_shuten/Stores/Redis.html +7 -6
- data/doc/IO_shuten/Stores.html +6 -7
- data/doc/IO_shuten/Zmq.html +166 -0
- data/doc/IO_shuten.html +6 -7
- data/doc/_index.html +49 -6
- data/doc/class_list.html +1 -1
- data/doc/file.README.html +10 -3
- data/doc/index.html +10 -3
- data/doc/method_list.html +160 -24
- data/doc/top-level-namespace.html +2 -2
- data/io_shuten.gemspec +6 -1
- data/lib/io_shuten/buffer.rb +8 -6
- data/lib/io_shuten/memory.rb +8 -5
- data/lib/io_shuten/version.rb +1 -1
- data/spec/lib/buffer_spec.rb +43 -0
- data/spec/lib/memory_spec.rb +49 -0
- data/spec/lib/redis_spec.rb +15 -1
- metadata +49 -44
@@ -81,9 +81,8 @@
|
|
81
81
|
|
82
82
|
<h2>Overview</h2><div class="docstring">
|
83
83
|
<div class="discussion">
|
84
|
-
|
85
|
-
Redis Backend for pub-sub (event/message) based storage
|
86
|
-
</p>
|
84
|
+
|
85
|
+
<p>Redis Backend for pub-sub (event/message) based storage</p>
|
87
86
|
|
88
87
|
|
89
88
|
</div>
|
@@ -96,14 +95,150 @@ Redis Backend for pub-sub (event/message) based storage
|
|
96
95
|
|
97
96
|
|
98
97
|
|
98
|
+
|
99
|
+
<h2>
|
100
|
+
Instance Method Summary
|
101
|
+
<small>(<a href="#" class="summary_toggle">collapse</a>)</small>
|
102
|
+
</h2>
|
103
|
+
|
104
|
+
<ul class="summary">
|
105
|
+
|
106
|
+
<li class="public ">
|
107
|
+
<span class="summary_signature">
|
108
|
+
|
109
|
+
<a href="#use_type-instance_method" title="#use_type (instance method)">- (Object) <strong>use_type</strong>(type) </a>
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
</span>
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
|
99
120
|
|
121
|
+
|
122
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
123
|
+
|
124
|
+
</li>
|
125
|
+
|
126
|
+
|
127
|
+
</ul>
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
<div id="instance_method_details" class="method_details_list">
|
133
|
+
<h2>Instance Method Details</h2>
|
134
|
+
|
135
|
+
|
136
|
+
<div class="method_details first">
|
137
|
+
<p class="signature first" id="use_type-instance_method">
|
138
|
+
|
139
|
+
- (<tt>Object</tt>) <strong>use_type</strong>(type)
|
140
|
+
|
141
|
+
|
142
|
+
|
143
|
+
</p><table class="source_code blame">
|
144
|
+
<caption><span class="info file"># File 'lib/io_shuten/stores/redis/pub_sub.rb', line 7</span></caption>
|
145
|
+
<tr>
|
146
|
+
<td>
|
147
|
+
<table>
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
<tr>
|
152
|
+
|
153
|
+
<td class="author"><a href="mailto:<chris@dinarrr.com>">Christoph Grabo</a></td>
|
154
|
+
|
155
|
+
<td class="date">2012-01-30 01:31:05</td>
|
156
|
+
<td class="commit"><a title="Add basic redis backends (KeyValue)">3daf4123</a><td>
|
157
|
+
<td class="lines">7</td>
|
158
|
+
<td><pre class="code"><span class='kw'>def</span> <span class='id identifier rubyid_use_type'>use_type</span> <span class='id identifier rubyid_type'>type</span></pre></td>
|
159
|
+
</tr>
|
160
|
+
|
161
|
+
|
162
|
+
<tr>
|
163
|
+
|
164
|
+
<td class="author"><a href="mailto:<chris@dinarrr.com>">Christoph Grabo</a></td>
|
165
|
+
|
166
|
+
<td class="date">2012-01-30 01:31:05</td>
|
167
|
+
<td class="commit"><a title="Add basic redis backends (KeyValue)">3daf4123</a><td>
|
168
|
+
<td class="lines">8</td>
|
169
|
+
<td><pre class="code"> <span class='kw'>if</span> <span class='lbracket'>[</span><span class='symbol'>:publisher</span><span class='comma'>,</span><span class='symbol'>:subscriber</span><span class='rbracket'>]</span><span class='period'>.</span><span class='id identifier rubyid_include?'>include?</span><span class='lparen'>(</span><span class='id identifier rubyid_type'>type</span><span class='rparen'>)</span></pre></td>
|
170
|
+
</tr>
|
171
|
+
|
172
|
+
|
173
|
+
<tr>
|
174
|
+
|
175
|
+
<td class="author"><a href="mailto:<chris@dinarrr.com>">Christoph Grabo</a></td>
|
176
|
+
|
177
|
+
<td class="date">2012-01-30 01:31:05</td>
|
178
|
+
<td class="commit"><a title="Add basic redis backends (KeyValue)">3daf4123</a><td>
|
179
|
+
<td class="lines">9</td>
|
180
|
+
<td><pre class="code"> <span class='ivar'>@backend_type</span> <span class='op'>=</span> <span class='id identifier rubyid_type'>type</span></pre></td>
|
181
|
+
</tr>
|
182
|
+
|
183
|
+
|
184
|
+
<tr>
|
185
|
+
|
186
|
+
<td class="author"><a href="mailto:<chris@dinarrr.com>">Christoph Grabo</a></td>
|
187
|
+
|
188
|
+
<td class="date">2012-01-30 01:31:05</td>
|
189
|
+
<td class="commit"><a title="Add basic redis backends (KeyValue)">3daf4123</a><td>
|
190
|
+
<td class="lines">10</td>
|
191
|
+
<td><pre class="code"> <span class='kw'>else</span></pre></td>
|
192
|
+
</tr>
|
193
|
+
|
194
|
+
|
195
|
+
<tr>
|
196
|
+
|
197
|
+
<td class="author"><a href="mailto:<chris@dinarrr.com>">Christoph Grabo</a></td>
|
198
|
+
|
199
|
+
<td class="date">2012-01-30 01:31:05</td>
|
200
|
+
<td class="commit"><a title="Add basic redis backends (KeyValue)">3daf4123</a><td>
|
201
|
+
<td class="lines">11</td>
|
202
|
+
<td><pre class="code"> <span class='id identifier rubyid_raise'>raise</span> <span class='const'>ArgumentError</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>Type for backend unknown. Use :single or :collection</span><span class='tstring_end'>"</span></span></pre></td>
|
203
|
+
</tr>
|
204
|
+
|
205
|
+
|
206
|
+
<tr>
|
207
|
+
|
208
|
+
<td class="author"><a href="mailto:<chris@dinarrr.com>">Christoph Grabo</a></td>
|
209
|
+
|
210
|
+
<td class="date">2012-01-30 01:31:05</td>
|
211
|
+
<td class="commit"><a title="Add basic redis backends (KeyValue)">3daf4123</a><td>
|
212
|
+
<td class="lines">12</td>
|
213
|
+
<td><pre class="code"> <span class='kw'>end</span></pre></td>
|
214
|
+
</tr>
|
215
|
+
|
216
|
+
|
217
|
+
<tr>
|
218
|
+
|
219
|
+
<td class="author"><a href="mailto:<chris@dinarrr.com>">Christoph Grabo</a></td>
|
220
|
+
|
221
|
+
<td class="date">2012-01-30 01:31:05</td>
|
222
|
+
<td class="commit"><a title="Add basic redis backends (KeyValue)">3daf4123</a><td>
|
223
|
+
<td class="lines">13</td>
|
224
|
+
<td><pre class="code"><span class='kw'>end</span></pre></td>
|
225
|
+
</tr>
|
226
|
+
|
227
|
+
</table>
|
228
|
+
</td>
|
229
|
+
<td>
|
230
|
+
</tr>
|
231
|
+
</table>
|
232
|
+
</div>
|
233
|
+
|
234
|
+
</div>
|
100
235
|
|
101
236
|
</div>
|
102
237
|
|
103
238
|
<div id="footer">
|
104
|
-
Generated on
|
239
|
+
Generated on Mon Jan 30 01:52:36 2012 by
|
105
240
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
106
|
-
0.7.4 (ruby-1.
|
241
|
+
0.7.4 (ruby-1.9.3).
|
107
242
|
</div>
|
108
243
|
|
109
244
|
</body>
|
@@ -75,7 +75,7 @@
|
|
75
75
|
|
76
76
|
<dt class="r1 last">Defined in:</dt>
|
77
77
|
<dd class="r1 last">lib/io_shuten/stores/redis.rb<span class="defines">,<br />
|
78
|
-
lib/io_shuten/stores/redis/pub_sub.rb,<br /> lib/io_shuten/stores/redis/key_value.rb</span>
|
78
|
+
lib/io_shuten/stores/redis/pub_sub.rb,<br /> lib/io_shuten/stores/redis/key_value.rb,<br /> lib/io_shuten/stores/redis/container.rb</span>
|
79
79
|
</dd>
|
80
80
|
|
81
81
|
</dl>
|
@@ -83,9 +83,8 @@
|
|
83
83
|
|
84
84
|
<h2>Overview</h2><div class="docstring">
|
85
85
|
<div class="discussion">
|
86
|
-
|
87
|
-
Namespace for redis backends
|
88
|
-
</p>
|
86
|
+
|
87
|
+
<p>Namespace for redis backends</p>
|
89
88
|
|
90
89
|
|
91
90
|
</div>
|
@@ -101,6 +100,8 @@ Namespace for redis backends
|
|
101
100
|
|
102
101
|
|
103
102
|
|
103
|
+
<strong class="classes">Classes:</strong> <span class='object_link'><a href="Redis/Container.html" title="IO_shuten::Stores::Redis::Container (class)">Container</a></span>
|
104
|
+
|
104
105
|
|
105
106
|
</p>
|
106
107
|
|
@@ -113,9 +114,9 @@ Namespace for redis backends
|
|
113
114
|
</div>
|
114
115
|
|
115
116
|
<div id="footer">
|
116
|
-
Generated on
|
117
|
+
Generated on Mon Jan 30 01:52:36 2012 by
|
117
118
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
118
|
-
0.7.4 (ruby-1.
|
119
|
+
0.7.4 (ruby-1.9.3).
|
119
120
|
</div>
|
120
121
|
|
121
122
|
</body>
|
data/doc/IO_shuten/Stores.html
CHANGED
@@ -75,7 +75,7 @@
|
|
75
75
|
|
76
76
|
<dt class="r1 last">Defined in:</dt>
|
77
77
|
<dd class="r1 last">lib/io_shuten/stores.rb<span class="defines">,<br />
|
78
|
-
lib/io_shuten/stores/redis.rb,<br /> lib/io_shuten/stores/mongo.rb</span>
|
78
|
+
lib/io_shuten/stores/redis.rb,<br /> lib/io_shuten/stores/mongo.rb,<br /> lib/io_shuten/stores/base_container.rb</span>
|
79
79
|
</dd>
|
80
80
|
|
81
81
|
</dl>
|
@@ -83,9 +83,8 @@
|
|
83
83
|
|
84
84
|
<h2>Overview</h2><div class="docstring">
|
85
85
|
<div class="discussion">
|
86
|
-
|
87
|
-
Namespace for the storage implementations
|
88
|
-
</p>
|
86
|
+
|
87
|
+
<p>Namespace for the storage implementations</p>
|
89
88
|
|
90
89
|
|
91
90
|
</div>
|
@@ -97,7 +96,7 @@ Namespace for the storage implementations
|
|
97
96
|
<p class="children">
|
98
97
|
|
99
98
|
|
100
|
-
<strong class="modules">Modules:</strong> <span class='object_link'><a href="Stores/Mongo.html" title="IO_shuten::Stores::Mongo (module)">Mongo</a></span>, <span class='object_link'><a href="Stores/Redis.html" title="IO_shuten::Stores::Redis (module)">Redis</a></span>
|
99
|
+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="Stores/BaseContainer.html" title="IO_shuten::Stores::BaseContainer (module)">BaseContainer</a></span>, <span class='object_link'><a href="Stores/Mongo.html" title="IO_shuten::Stores::Mongo (module)">Mongo</a></span>, <span class='object_link'><a href="Stores/Redis.html" title="IO_shuten::Stores::Redis (module)">Redis</a></span>
|
101
100
|
|
102
101
|
|
103
102
|
|
@@ -113,9 +112,9 @@ Namespace for the storage implementations
|
|
113
112
|
</div>
|
114
113
|
|
115
114
|
<div id="footer">
|
116
|
-
Generated on
|
115
|
+
Generated on Mon Jan 30 01:52:36 2012 by
|
117
116
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
118
|
-
0.7.4 (ruby-1.
|
117
|
+
0.7.4 (ruby-1.9.3).
|
119
118
|
</div>
|
120
119
|
|
121
120
|
</body>
|
@@ -0,0 +1,166 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>
|
7
|
+
Class: IO_shuten::Zmq
|
8
|
+
|
9
|
+
— IO::shuten 【五百::終点】
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" media="screen" charset="utf-8" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" media="screen" charset="utf-8" />
|
16
|
+
|
17
|
+
<link rel="stylesheet" href="../css/blame.css" type="text/css" media="screen" charset="utf-8" />
|
18
|
+
|
19
|
+
<script type="text/javascript" charset="utf-8">
|
20
|
+
relpath = '..';
|
21
|
+
if (relpath != '') relpath += '/';
|
22
|
+
</script>
|
23
|
+
|
24
|
+
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
|
25
|
+
|
26
|
+
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
|
27
|
+
|
28
|
+
|
29
|
+
</head>
|
30
|
+
<body>
|
31
|
+
<script type="text/javascript" charset="utf-8">
|
32
|
+
if (window.top.frames.main) document.body.className = 'frames';
|
33
|
+
</script>
|
34
|
+
|
35
|
+
<div id="header">
|
36
|
+
<div id="menu">
|
37
|
+
|
38
|
+
<a href="../_index.html">Index (Z)</a> »
|
39
|
+
<span class='title'><span class='object_link'><a href="../IO_shuten.html" title="IO_shuten (module)">IO_shuten</a></span></span>
|
40
|
+
»
|
41
|
+
<span class="title">Zmq</span>
|
42
|
+
|
43
|
+
|
44
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<div id="search">
|
48
|
+
|
49
|
+
<a id="class_list_link" href="#">Class List</a>
|
50
|
+
|
51
|
+
<a id="method_list_link" href="#">Method List</a>
|
52
|
+
|
53
|
+
<a id="file_list_link" href="#">File List</a>
|
54
|
+
|
55
|
+
</div>
|
56
|
+
<div class="clear"></div>
|
57
|
+
</div>
|
58
|
+
|
59
|
+
<iframe id="search_frame"></iframe>
|
60
|
+
|
61
|
+
<div id="content"><h1>Class: IO_shuten::Zmq
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
</h1>
|
66
|
+
|
67
|
+
<dl class="box">
|
68
|
+
|
69
|
+
<dt class="r1">Inherits:</dt>
|
70
|
+
<dd class="r1">
|
71
|
+
<span class="inheritName"><span class='object_link'><a href="Base.html" title="IO_shuten::Base (class)">Base</a></span></span>
|
72
|
+
|
73
|
+
<ul class="fullTree">
|
74
|
+
<li>Object</li>
|
75
|
+
|
76
|
+
<li class="next"><span class='object_link'><a href="Base.html" title="IO_shuten::Base (class)">Base</a></span></li>
|
77
|
+
|
78
|
+
<li class="next">IO_shuten::Zmq</li>
|
79
|
+
|
80
|
+
</ul>
|
81
|
+
<a href="#" class="inheritanceTree">show all</a>
|
82
|
+
|
83
|
+
</dd>
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
<dt class="r2 last">Defined in:</dt>
|
94
|
+
<dd class="r2 last">lib/io_shuten/zmq.rb</dd>
|
95
|
+
|
96
|
+
</dl>
|
97
|
+
<div class="clear"></div>
|
98
|
+
|
99
|
+
<h2>Overview</h2><div class="docstring">
|
100
|
+
<div class="discussion">
|
101
|
+
|
102
|
+
<div class="note todo">
|
103
|
+
<strong>TODO:</strong>
|
104
|
+
<div class='inline'>
|
105
|
+
<p>Needs different backends (pub-sub, req-recv)!</p>
|
106
|
+
</div>
|
107
|
+
</div>
|
108
|
+
|
109
|
+
|
110
|
+
<p>Implementation of the ZMQ</p>
|
111
|
+
|
112
|
+
|
113
|
+
</div>
|
114
|
+
</div>
|
115
|
+
<div class="tags">
|
116
|
+
|
117
|
+
|
118
|
+
</div>
|
119
|
+
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
<h2>Instance Attribute Summary</h2>
|
130
|
+
|
131
|
+
<h3 class="inherited">Attributes inherited from <span class='object_link'><a href="Base.html" title="IO_shuten::Base (class)">Base</a></span></h3>
|
132
|
+
<p class="inherited"><span class='object_link'><a href="Base.html#container-instance_method" title="IO_shuten::Base#container (method)">container</a></span>, <span class='object_link'><a href="Base.html#node_name-instance_method" title="IO_shuten::Base#node_name (method)">node_name</a></span></p>
|
133
|
+
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
<h2>Method Summary</h2>
|
142
|
+
|
143
|
+
<h3 class="inherited">Methods inherited from <span class='object_link'><a href="Base.html" title="IO_shuten::Base (class)">Base</a></span></h3>
|
144
|
+
<p class="inherited"><span class='object_link'><a href="Base.html#delete_instance-class_method" title="IO_shuten::Base.delete_instance (method)">delete_instance</a></span>, <span class='object_link'><a href="Base.html#instance_exists%3F-class_method" title="IO_shuten::Base.instance_exists? (method)">instance_exists?</a></span>, <span class='object_link'><a href="Base.html#instances-class_method" title="IO_shuten::Base.instances (method)">instances</a></span>, <span class='object_link'><a href="Base.html#purge_instances%21-class_method" title="IO_shuten::Base.purge_instances! (method)">purge_instances!</a></span></p>
|
145
|
+
<div id="method_missing_details" class="method_details_list">
|
146
|
+
<h2>Dynamic Method Handling</h2>
|
147
|
+
<p class="notice super">
|
148
|
+
This class handles dynamic methods through the <tt>method_missing</tt> method
|
149
|
+
|
150
|
+
in the class <span class='object_link'><a href="Base.html#method_missing-instance_method" title="IO_shuten::Base#method_missing (method)">IO_shuten::Base</a></span>
|
151
|
+
|
152
|
+
</p>
|
153
|
+
|
154
|
+
</div>
|
155
|
+
|
156
|
+
|
157
|
+
</div>
|
158
|
+
|
159
|
+
<div id="footer">
|
160
|
+
Generated on Mon Jan 30 01:52:35 2012 by
|
161
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
162
|
+
0.7.4 (ruby-1.9.3).
|
163
|
+
</div>
|
164
|
+
|
165
|
+
</body>
|
166
|
+
</html>
|
data/doc/IO_shuten.html
CHANGED
@@ -75,7 +75,7 @@
|
|
75
75
|
|
76
76
|
<dt class="r1 last">Defined in:</dt>
|
77
77
|
<dd class="r1 last">lib/io_shuten.rb<span class="defines">,<br />
|
78
|
-
lib/io_shuten/base.rb,<br /> lib/io_shuten/mongo.rb,<br /> lib/io_shuten/redis.rb,<br /> lib/io_shuten/
|
78
|
+
lib/io_shuten/zmq.rb,<br /> lib/io_shuten/base.rb,<br /> lib/io_shuten/mongo.rb,<br /> lib/io_shuten/redis.rb,<br /> lib/io_shuten/buffer.rb,<br /> lib/io_shuten/errors.rb,<br /> lib/io_shuten/memory.rb,<br /> lib/io_shuten/stores.rb,<br /> lib/io_shuten/version.rb</span>
|
79
79
|
</dd>
|
80
80
|
|
81
81
|
</dl>
|
@@ -83,9 +83,8 @@
|
|
83
83
|
|
84
84
|
<h2>Overview</h2><div class="docstring">
|
85
85
|
<div class="discussion">
|
86
|
-
|
87
|
-
Namespace of the IO implementations
|
88
|
-
</p>
|
86
|
+
|
87
|
+
<p>Namespace of the IO implementations</p>
|
89
88
|
|
90
89
|
|
91
90
|
</div>
|
@@ -101,7 +100,7 @@ Namespace of the IO implementations
|
|
101
100
|
|
102
101
|
|
103
102
|
|
104
|
-
<strong class="classes">Classes:</strong> <span class='object_link'><a href="IO_shuten/Base.html" title="IO_shuten::Base (class)">Base</a></span>, <span class='object_link'><a href="IO_shuten/Buffer.html" title="IO_shuten::Buffer (class)">Buffer</a></span>, <span class='object_link'><a href="IO_shuten/Memory.html" title="IO_shuten::Memory (class)">Memory</a></span>, <span class='object_link'><a href="IO_shuten/Mongo.html" title="IO_shuten::Mongo (class)">Mongo</a></span>, <span class='object_link'><a href="IO_shuten/Redis.html" title="IO_shuten::Redis (class)">Redis</a></span>
|
103
|
+
<strong class="classes">Classes:</strong> <span class='object_link'><a href="IO_shuten/Base.html" title="IO_shuten::Base (class)">Base</a></span>, <span class='object_link'><a href="IO_shuten/Buffer.html" title="IO_shuten::Buffer (class)">Buffer</a></span>, <span class='object_link'><a href="IO_shuten/Memory.html" title="IO_shuten::Memory (class)">Memory</a></span>, <span class='object_link'><a href="IO_shuten/Mongo.html" title="IO_shuten::Mongo (class)">Mongo</a></span>, <span class='object_link'><a href="IO_shuten/Redis.html" title="IO_shuten::Redis (class)">Redis</a></span>, <span class='object_link'><a href="IO_shuten/Zmq.html" title="IO_shuten::Zmq (class)">Zmq</a></span>
|
105
104
|
|
106
105
|
|
107
106
|
</p>
|
@@ -118,9 +117,9 @@ Namespace of the IO implementations
|
|
118
117
|
</div>
|
119
118
|
|
120
119
|
<div id="footer">
|
121
|
-
Generated on
|
120
|
+
Generated on Mon Jan 30 01:52:35 2012 by
|
122
121
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
123
|
-
0.7.4 (ruby-1.
|
122
|
+
0.7.4 (ruby-1.9.3).
|
124
123
|
</div>
|
125
124
|
|
126
125
|
</body>
|
data/doc/_index.html
CHANGED
@@ -89,6 +89,13 @@
|
|
89
89
|
|
90
90
|
</li>
|
91
91
|
|
92
|
+
<li>
|
93
|
+
<span class='object_link'><a href="IO_shuten/Stores/BaseContainer.html" title="IO_shuten::Stores::BaseContainer (module)">BaseContainer</a></span>
|
94
|
+
|
95
|
+
<small>(IO_shuten::Stores)</small>
|
96
|
+
|
97
|
+
</li>
|
98
|
+
|
92
99
|
<li>
|
93
100
|
<span class='object_link'><a href="IO_shuten/Buffer.html" title="IO_shuten::Buffer (class)">Buffer</a></span>
|
94
101
|
|
@@ -111,6 +118,20 @@
|
|
111
118
|
|
112
119
|
</li>
|
113
120
|
|
121
|
+
<li>
|
122
|
+
<span class='object_link'><a href="IO_shuten/Stores/Redis/KeyValue/Collection.html" title="IO_shuten::Stores::Redis::KeyValue::Collection (module)">Collection</a></span>
|
123
|
+
|
124
|
+
<small>(IO_shuten::Stores::Redis::KeyValue)</small>
|
125
|
+
|
126
|
+
</li>
|
127
|
+
|
128
|
+
<li>
|
129
|
+
<span class='object_link'><a href="IO_shuten/Stores/Redis/Container.html" title="IO_shuten::Stores::Redis::Container (class)">Container</a></span>
|
130
|
+
|
131
|
+
<small>(IO_shuten::Stores::Redis)</small>
|
132
|
+
|
133
|
+
</li>
|
134
|
+
|
114
135
|
</ul>
|
115
136
|
</ul>
|
116
137
|
|
@@ -283,16 +304,16 @@
|
|
283
304
|
<ul>
|
284
305
|
|
285
306
|
<li>
|
286
|
-
<span class='object_link'><a href="IO_shuten/Redis.html" title="IO_shuten::Redis (
|
307
|
+
<span class='object_link'><a href="IO_shuten/Stores/Redis.html" title="IO_shuten::Stores::Redis (module)">Redis</a></span>
|
287
308
|
|
288
|
-
<small>(IO_shuten)</small>
|
309
|
+
<small>(IO_shuten::Stores)</small>
|
289
310
|
|
290
311
|
</li>
|
291
312
|
|
292
313
|
<li>
|
293
|
-
<span class='object_link'><a href="IO_shuten/
|
314
|
+
<span class='object_link'><a href="IO_shuten/Redis.html" title="IO_shuten::Redis (class)">Redis</a></span>
|
294
315
|
|
295
|
-
<small>(IO_shuten
|
316
|
+
<small>(IO_shuten)</small>
|
296
317
|
|
297
318
|
</li>
|
298
319
|
|
@@ -304,6 +325,13 @@
|
|
304
325
|
<li class="letter">S</li>
|
305
326
|
<ul>
|
306
327
|
|
328
|
+
<li>
|
329
|
+
<span class='object_link'><a href="IO_shuten/Stores/Redis/KeyValue/Single.html" title="IO_shuten::Stores::Redis::KeyValue::Single (module)">Single</a></span>
|
330
|
+
|
331
|
+
<small>(IO_shuten::Stores::Redis::KeyValue)</small>
|
332
|
+
|
333
|
+
</li>
|
334
|
+
|
307
335
|
<li>
|
308
336
|
<span class='object_link'><a href="IO_shuten/Stores.html" title="IO_shuten::Stores (module)">Stores</a></span>
|
309
337
|
|
@@ -314,6 +342,21 @@
|
|
314
342
|
</ul>
|
315
343
|
</ul>
|
316
344
|
|
345
|
+
|
346
|
+
<ul id="alpha_Z" class="alpha">
|
347
|
+
<li class="letter">Z</li>
|
348
|
+
<ul>
|
349
|
+
|
350
|
+
<li>
|
351
|
+
<span class='object_link'><a href="IO_shuten/Zmq.html" title="IO_shuten::Zmq (class)">Zmq</a></span>
|
352
|
+
|
353
|
+
<small>(IO_shuten)</small>
|
354
|
+
|
355
|
+
</li>
|
356
|
+
|
357
|
+
</ul>
|
358
|
+
</ul>
|
359
|
+
|
317
360
|
</td>
|
318
361
|
</tr>
|
319
362
|
</table>
|
@@ -323,9 +366,9 @@
|
|
323
366
|
</div>
|
324
367
|
|
325
368
|
<div id="footer">
|
326
|
-
Generated on
|
369
|
+
Generated on Mon Jan 30 01:52:35 2012 by
|
327
370
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
328
|
-
0.7.4 (ruby-1.
|
371
|
+
0.7.4 (ruby-1.9.3).
|
329
372
|
</div>
|
330
373
|
|
331
374
|
</body>
|
data/doc/class_list.html
CHANGED
@@ -39,7 +39,7 @@
|
|
39
39
|
|
40
40
|
<ul id="full_list" class="class">
|
41
41
|
<li><span class='object_link'><a href="top-level-namespace.html" title=" (root)">Top Level Namespace</a></span></li>
|
42
|
-
<li><a class='toggle'></a> <span class='object_link'><a href="IO_shuten.html" title="IO_shuten (module)">IO_shuten</a></span><small class='search_info'>Top Level Namespace</small></li><ul><li><span class='object_link'><a href="IO_shuten/Base.html" title="IO_shuten::Base (class)">Base</a></span> < Object<small class='search_info'>IO_shuten</small></li><li><span class='object_link'><a href="IO_shuten/Buffer.html" title="IO_shuten::Buffer (class)">Buffer</a></span> < Base<small class='search_info'>IO_shuten</small></li><li><a class='toggle'></a> <span class='object_link'><a href="IO_shuten/Errors.html" title="IO_shuten::Errors (module)">Errors</a></span><small class='search_info'>IO_shuten</small></li><ul><li><span class='object_link'><a href="IO_shuten/Errors/FileAccessError.html" title="IO_shuten::Errors::FileAccessError (class)">FileAccessError</a></span> < StandardError<small class='search_info'>IO_shuten::Errors</small></li><li><span class='object_link'><a href="IO_shuten/Errors/FileNotFoundError.html" title="IO_shuten::Errors::FileNotFoundError (class)">FileNotFoundError</a></span> < StandardError<small class='search_info'>IO_shuten::Errors</small></li><li><span class='object_link'><a href="IO_shuten/Errors/NodeExistsError.html" title="IO_shuten::Errors::NodeExistsError (class)">NodeExistsError</a></span> < StandardError<small class='search_info'>IO_shuten::Errors</small></li><li><span class='object_link'><a href="IO_shuten/Errors/NodeNameError.html" title="IO_shuten::Errors::NodeNameError (class)">NodeNameError</a></span> < StandardError<small class='search_info'>IO_shuten::Errors</small></li><li><span class='object_link'><a href="IO_shuten/Errors/NodeNotFoundError.html" title="IO_shuten::Errors::NodeNotFoundError (class)">NodeNotFoundError</a></span> < StandardError<small class='search_info'>IO_shuten::Errors</small></li><li><span class='object_link'><a href="IO_shuten/Errors/NotYetImplemented.html" title="IO_shuten::Errors::NotYetImplemented (class)">NotYetImplemented</a></span> < StandardError<small class='search_info'>IO_shuten::Errors</small></li></ul><li><span class='object_link'><a href="IO_shuten/Memory.html" title="IO_shuten::Memory (class)">Memory</a></span> < Base<small class='search_info'>IO_shuten</small></li><li><span class='object_link'><a href="IO_shuten/Mongo.html" title="IO_shuten::Mongo (class)">Mongo</a></span> < Base<small class='search_info'>IO_shuten</small></li><li><span class='object_link'><a href="IO_shuten/Redis.html" title="IO_shuten::Redis (class)">Redis</a></span> < Base<small class='search_info'>IO_shuten</small></li><li><a class='toggle'></a> <span class='object_link'><a href="IO_shuten/Stores.html" title="IO_shuten::Stores (module)">Stores</a></span><small class='search_info'>IO_shuten</small></li><ul><li><a class='toggle'></a> <span class='object_link'><a href="IO_shuten/Stores/Mongo.html" title="IO_shuten::Stores::Mongo (module)">Mongo</a></span><small class='search_info'>IO_shuten::Stores</small></li><ul><li><span class='object_link'><a href="IO_shuten/Stores/Mongo/Collection.html" title="IO_shuten::Stores::Mongo::Collection (module)">Collection</a></span><small class='search_info'>IO_shuten::Stores::Mongo</small></li><li><span class='object_link'><a href="IO_shuten/Stores/Mongo/GridFS.html" title="IO_shuten::Stores::Mongo::GridFS (module)">GridFS</a></span><small class='search_info'>IO_shuten::Stores::Mongo</small></li></ul><li><a class='toggle'></a> <span class='object_link'><a href="IO_shuten/Stores/Redis.html" title="IO_shuten::Stores::Redis (module)">Redis</a></span><small class='search_info'>IO_shuten::Stores</small></li><ul><li><span class='object_link'><a href="IO_shuten/Stores/Redis/KeyValue.html" title="IO_shuten::Stores::Redis::KeyValue (module)">KeyValue</a></span><small class='search_info'>IO_shuten::Stores::Redis</small></li><li><span class='object_link'><a href="IO_shuten/Stores/Redis/PubSub.html" title="IO_shuten::Stores::Redis::PubSub (module)">PubSub</a></span><small class='search_info'>IO_shuten::Stores::Redis</small></li></ul></ul></ul>
|
42
|
+
<li><a class='toggle'></a> <span class='object_link'><a href="IO_shuten.html" title="IO_shuten (module)">IO_shuten</a></span><small class='search_info'>Top Level Namespace</small></li><ul><li><span class='object_link'><a href="IO_shuten/Base.html" title="IO_shuten::Base (class)">Base</a></span> < Object<small class='search_info'>IO_shuten</small></li><li><span class='object_link'><a href="IO_shuten/Buffer.html" title="IO_shuten::Buffer (class)">Buffer</a></span> < Base<small class='search_info'>IO_shuten</small></li><li><a class='toggle'></a> <span class='object_link'><a href="IO_shuten/Errors.html" title="IO_shuten::Errors (module)">Errors</a></span><small class='search_info'>IO_shuten</small></li><ul><li><span class='object_link'><a href="IO_shuten/Errors/FileAccessError.html" title="IO_shuten::Errors::FileAccessError (class)">FileAccessError</a></span> < StandardError<small class='search_info'>IO_shuten::Errors</small></li><li><span class='object_link'><a href="IO_shuten/Errors/FileNotFoundError.html" title="IO_shuten::Errors::FileNotFoundError (class)">FileNotFoundError</a></span> < StandardError<small class='search_info'>IO_shuten::Errors</small></li><li><span class='object_link'><a href="IO_shuten/Errors/NodeExistsError.html" title="IO_shuten::Errors::NodeExistsError (class)">NodeExistsError</a></span> < StandardError<small class='search_info'>IO_shuten::Errors</small></li><li><span class='object_link'><a href="IO_shuten/Errors/NodeNameError.html" title="IO_shuten::Errors::NodeNameError (class)">NodeNameError</a></span> < StandardError<small class='search_info'>IO_shuten::Errors</small></li><li><span class='object_link'><a href="IO_shuten/Errors/NodeNotFoundError.html" title="IO_shuten::Errors::NodeNotFoundError (class)">NodeNotFoundError</a></span> < StandardError<small class='search_info'>IO_shuten::Errors</small></li><li><span class='object_link'><a href="IO_shuten/Errors/NotYetImplemented.html" title="IO_shuten::Errors::NotYetImplemented (class)">NotYetImplemented</a></span> < StandardError<small class='search_info'>IO_shuten::Errors</small></li></ul><li><span class='object_link'><a href="IO_shuten/Memory.html" title="IO_shuten::Memory (class)">Memory</a></span> < Base<small class='search_info'>IO_shuten</small></li><li><span class='object_link'><a href="IO_shuten/Mongo.html" title="IO_shuten::Mongo (class)">Mongo</a></span> < Base<small class='search_info'>IO_shuten</small></li><li><span class='object_link'><a href="IO_shuten/Redis.html" title="IO_shuten::Redis (class)">Redis</a></span> < Base<small class='search_info'>IO_shuten</small></li><li><a class='toggle'></a> <span class='object_link'><a href="IO_shuten/Stores.html" title="IO_shuten::Stores (module)">Stores</a></span><small class='search_info'>IO_shuten</small></li><ul><li><span class='object_link'><a href="IO_shuten/Stores/BaseContainer.html" title="IO_shuten::Stores::BaseContainer (module)">BaseContainer</a></span><small class='search_info'>IO_shuten::Stores</small></li><li><a class='toggle'></a> <span class='object_link'><a href="IO_shuten/Stores/Mongo.html" title="IO_shuten::Stores::Mongo (module)">Mongo</a></span><small class='search_info'>IO_shuten::Stores</small></li><ul><li><span class='object_link'><a href="IO_shuten/Stores/Mongo/Collection.html" title="IO_shuten::Stores::Mongo::Collection (module)">Collection</a></span><small class='search_info'>IO_shuten::Stores::Mongo</small></li><li><span class='object_link'><a href="IO_shuten/Stores/Mongo/GridFS.html" title="IO_shuten::Stores::Mongo::GridFS (module)">GridFS</a></span><small class='search_info'>IO_shuten::Stores::Mongo</small></li></ul><li><a class='toggle'></a> <span class='object_link'><a href="IO_shuten/Stores/Redis.html" title="IO_shuten::Stores::Redis (module)">Redis</a></span><small class='search_info'>IO_shuten::Stores</small></li><ul><li><span class='object_link'><a href="IO_shuten/Stores/Redis/Container.html" title="IO_shuten::Stores::Redis::Container (class)">Container</a></span> < Object<small class='search_info'>IO_shuten::Stores::Redis</small></li><li><a class='toggle'></a> <span class='object_link'><a href="IO_shuten/Stores/Redis/KeyValue.html" title="IO_shuten::Stores::Redis::KeyValue (module)">KeyValue</a></span><small class='search_info'>IO_shuten::Stores::Redis</small></li><ul><li><span class='object_link'><a href="IO_shuten/Stores/Redis/KeyValue/Collection.html" title="IO_shuten::Stores::Redis::KeyValue::Collection (module)">Collection</a></span><small class='search_info'>IO_shuten::Stores::Redis::KeyValue</small></li><li><span class='object_link'><a href="IO_shuten/Stores/Redis/KeyValue/Single.html" title="IO_shuten::Stores::Redis::KeyValue::Single (module)">Single</a></span><small class='search_info'>IO_shuten::Stores::Redis::KeyValue</small></li></ul><li><span class='object_link'><a href="IO_shuten/Stores/Redis/PubSub.html" title="IO_shuten::Stores::Redis::PubSub (module)">PubSub</a></span><small class='search_info'>IO_shuten::Stores::Redis</small></li></ul></ul><li><span class='object_link'><a href="IO_shuten/Zmq.html" title="IO_shuten::Zmq (class)">Zmq</a></span> < Base<small class='search_info'>IO_shuten</small></li></ul>
|
43
43
|
|
44
44
|
</ul>
|
45
45
|
</div>
|
data/doc/file.README.html
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
3
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
4
|
<head>
|
5
|
-
<meta http-equiv="Content-Type" content="text/html; charset=
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
6
6
|
<title>
|
7
7
|
File: README
|
8
8
|
|
@@ -113,6 +113,13 @@ A logger only needs write and close methods of an IO object.</p>
|
|
113
113
|
<p>Provides basic methods like <code>#read</code>, <code>#write</code> and <code>#close</code>.
|
114
114
|
A logger only needs write and close methods of an IO object.</p>
|
115
115
|
|
116
|
+
<h3>IO_shuten::Zmq</h3>
|
117
|
+
|
118
|
+
<p>"Stores" content in a zmq socket.</p>
|
119
|
+
|
120
|
+
<p>Provides basic methods like <code>#read</code>, <code>#write</code> and <code>#close</code>.
|
121
|
+
A logger only needs write and close methods of an IO object.</p>
|
122
|
+
|
116
123
|
<h2>Not for production!</h2>
|
117
124
|
|
118
125
|
<p>This project is freshly started and currently not usable.</p>
|
@@ -142,9 +149,9 @@ A logger only needs write and close methods of an IO object.</p>
|
|
142
149
|
</div></div>
|
143
150
|
|
144
151
|
<div id="footer">
|
145
|
-
Generated on
|
152
|
+
Generated on Mon Jan 30 01:52:35 2012 by
|
146
153
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
147
|
-
0.7.4 (ruby-1.
|
154
|
+
0.7.4 (ruby-1.9.3).
|
148
155
|
</div>
|
149
156
|
|
150
157
|
</body>
|