jylis-rb 0.0.1 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +221 -0
- data/doc/Jylis.html +1087 -6
- data/doc/Jylis/Connection.html +1128 -0
- data/doc/Jylis/Connection/HostMissingError.html +135 -0
- data/doc/Jylis/Connection/UnsupportedSchemaError.html +135 -0
- data/doc/Jylis/DataType.html +135 -0
- data/doc/Jylis/DataType/Base.html +346 -0
- data/doc/Jylis/DataType/GCOUNT.html +331 -0
- data/doc/Jylis/DataType/GCOUNT/Result.html +132 -0
- data/doc/Jylis/DataType/MVREG.html +318 -0
- data/doc/Jylis/DataType/PNCOUNT.html +404 -0
- data/doc/Jylis/DataType/TLOG.html +750 -0
- data/doc/Jylis/DataType/TLOG/Result.html +640 -0
- data/doc/Jylis/DataType/TLOG/Row.html +616 -0
- data/doc/Jylis/DataType/TREG.html +345 -0
- data/doc/Jylis/DataType/TREG/Result.html +616 -0
- data/doc/Jylis/DataType/UJSON.html +549 -0
- data/doc/_index.html +185 -4
- data/doc/class_list.html +1 -1
- data/doc/file.README.html +223 -3
- data/doc/file.license.html +3 -3
- data/doc/frames.html +1 -1
- data/doc/index.html +223 -3
- data/doc/method_list.html +512 -0
- data/doc/top-level-namespace.html +3 -3
- data/lib/jylis-rb.rb +9 -0
- data/lib/jylis-rb/connection.rb +121 -0
- data/lib/jylis-rb/data_types/base.rb +24 -0
- data/lib/jylis-rb/data_types/gcount.rb +24 -0
- data/lib/jylis-rb/data_types/mvreg.rb +23 -0
- data/lib/jylis-rb/data_types/pncount.rb +33 -0
- data/lib/jylis-rb/data_types/tlog.rb +157 -0
- data/lib/jylis-rb/data_types/treg.rb +57 -0
- data/lib/jylis-rb/data_types/ujson.rb +87 -0
- data/lib/jylis-rb/jylis.rb +106 -0
- data/lib/jylis-rb/version.rb +1 -1
- metadata +39 -2
data/doc/file.license.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
File: license
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.14
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -60,9 +60,9 @@
|
|
60
60
|
<div id="content"><div id='filecontents'>The MIT License (MIT)<br/><br/>Copyright (c) 2018 Alex McLain<br/><br/>Permission is hereby granted, free of charge, to any person obtaining a copy<br/>of this software and associated documentation files (the "Software"), to deal<br/>in the Software without restriction, including without limitation the rights<br/>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell<br/>copies of the Software, and to permit persons to whom the Software is<br/>furnished to do so, subject to the following conditions:<br/><br/>The above copyright notice and this permission notice shall be included in<br/>all copies or substantial portions of the Software.<br/><br/>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR<br/>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,<br/>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE<br/>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER<br/>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,<br/>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN<br/>THE SOFTWARE.</div></div>
|
61
61
|
|
62
62
|
<div id="footer">
|
63
|
-
Generated on
|
63
|
+
Generated on Sun Jun 3 21:46:59 2018 by
|
64
64
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
65
|
-
0.9.
|
65
|
+
0.9.14 (ruby-2.5.1).
|
66
66
|
</div>
|
67
67
|
|
68
68
|
</div>
|
data/doc/frames.html
CHANGED
data/doc/index.html
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<title>
|
7
7
|
File: README
|
8
8
|
|
9
|
-
— Documentation by YARD 0.9.
|
9
|
+
— Documentation by YARD 0.9.14
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
@@ -60,6 +60,15 @@
|
|
60
60
|
<div id="content"><div id='filecontents'>
|
61
61
|
<h1 id="label-jylis-rb">jylis-rb</h1>
|
62
62
|
|
63
|
+
<p><a href="https://badge.fury.io/rb/jylis-rb"><img
|
64
|
+
src="https://badge.fury.io/rb/jylis-rb.svg"></a> <a
|
65
|
+
href="https://coveralls.io/github/amclain/jylis-rb?branch=master"><img
|
66
|
+
src="https://coveralls.io/repos/github/amclain/jylis-rb/badge.svg?branch=master"></a>
|
67
|
+
<a href="http://www.rubydoc.info/gems/jylis-rb"><img
|
68
|
+
src="http://img.shields.io/badge/docs-api-blue.svg"></a> <a
|
69
|
+
href="https://github.com/amclain/jylis-rb/blob/master/license.txt"><img
|
70
|
+
src="https://img.shields.io/badge/license-MIT-yellowgreen.svg"></a></p>
|
71
|
+
|
63
72
|
<p>An idiomatic library for connecting a Ruby project to a <a
|
64
73
|
href="https://github.com/jemc/jylis">Jylis</a> database.</p>
|
65
74
|
|
@@ -67,12 +76,223 @@ href="https://github.com/jemc/jylis">Jylis</a> database.</p>
|
|
67
76
|
<p>Jylis is a distributed in-memory database for Conflict-free Replicated Data
|
68
77
|
Types (CRDTs), built for speed, scalability, availability, and ease of use.</p>
|
69
78
|
</blockquote>
|
79
|
+
|
80
|
+
<h2 id="label-Installation">Installation</h2>
|
81
|
+
|
82
|
+
<p>Install this library from the Ruby package manager with the following
|
83
|
+
command:</p>
|
84
|
+
|
85
|
+
<pre class="code ruby"><code class="ruby">$ gem install jylis-rb
|
86
|
+
</code></pre>
|
87
|
+
|
88
|
+
<p>Add the following <code>require</code> to your project:</p>
|
89
|
+
|
90
|
+
<pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_require'>require</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>jylis-rb</span><span class='tstring_end'>'</span></span>
|
91
|
+
</code></pre>
|
92
|
+
|
93
|
+
<p>The library is now ready for use.</p>
|
94
|
+
|
95
|
+
<h3 id="label-Installing+From+Source">Installing From Source</h3>
|
96
|
+
|
97
|
+
<p>If you choose not to use a version of the gem provided by the package
|
98
|
+
manager, you may alternatively install this library from the source code.
|
99
|
+
This section can be skipped if you have already installed the gem from the
|
100
|
+
package manager.</p>
|
101
|
+
|
102
|
+
<p>Ensure <code>bundler</code> and <code>rake</code> are installed:</p>
|
103
|
+
|
104
|
+
<pre class="code ruby"><code class="ruby">$ gem install bundler
|
105
|
+
$ gem install rake
|
106
|
+
</code></pre>
|
107
|
+
|
108
|
+
<p>Clone the repository and navigate inside the project directory:</p>
|
109
|
+
|
110
|
+
<pre class="code ruby"><code class="ruby">$ git clone git@github.com:amclain/jylis-rb.git
|
111
|
+
$ cd jylis-rb
|
112
|
+
</code></pre>
|
113
|
+
|
114
|
+
<p>Install the dependencies:</p>
|
115
|
+
|
116
|
+
<pre class="code ruby"><code class="ruby">$ bundle install
|
117
|
+
</code></pre>
|
118
|
+
|
119
|
+
<p>Ensure the tests pass:</p>
|
120
|
+
|
121
|
+
<pre class="code ruby"><code class="ruby">$ rake
|
122
|
+
</code></pre>
|
123
|
+
|
124
|
+
<p>Install the gem from the working source code:</p>
|
125
|
+
|
126
|
+
<pre class="code ruby"><code class="ruby">$ rake install
|
127
|
+
</code></pre>
|
128
|
+
|
129
|
+
<h2 id="label-Database+Connection">Database Connection</h2>
|
130
|
+
|
131
|
+
<p>The connection URI must be specified in the format:
|
132
|
+
<code>schema://host:port</code>, where the schema is <code>jylis</code>.
|
133
|
+
The <code>host</code> can be a host name, IP address, or domain name of the
|
134
|
+
database host to connect to. The <code>port</code> is optional and defaults
|
135
|
+
to <code>6379</code> unless otherwise specified.</p>
|
136
|
+
|
137
|
+
<pre class="code ruby"><code class="ruby"><span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_connect'><span class='object_link'><a href="Jylis.html#connect-class_method" title="Jylis.connect (method)">connect</a></span></span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>jylis://host:port</span><span class='tstring_end'>"</span></span><span class='rparen'>)</span>
|
138
|
+
</code></pre>
|
139
|
+
|
140
|
+
<h2 id="label-Queries">Queries</h2>
|
141
|
+
|
142
|
+
<p>This library aims to be idiomatic with both Ruby and Jylis. Therefore, the
|
143
|
+
syntax of the queries closely match the <a
|
144
|
+
href="https://jemc.github.io/jylis/docs/types/">Jylis documentation</a> and
|
145
|
+
ideally it should feel so natural to you, a Ruby programmer, that you
|
146
|
+
don't need to read the documentation for this library (although this
|
147
|
+
library is thoroughly documented in the case that you do).</p>
|
148
|
+
|
149
|
+
<p>For example, take the case of a Jylis query to set a value for a <a
|
150
|
+
href="https://jemc.github.io/jylis/docs/types/ujson/#set-key-key-ujson">UJSON</a>
|
151
|
+
key:</p>
|
152
|
+
|
153
|
+
<pre class="code ruby"><code class="ruby"><span class='const'>UJSON</span> <span class='const'>SET</span> <span class='id identifier rubyid_fruit'>fruit</span> <span class='id identifier rubyid_apple'>apple</span> <span class='id identifier rubyid_properties'>properties</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>{"color": "red", "ripe": true}</span><span class='tstring_end'>'</span></span>
|
154
|
+
</code></pre>
|
155
|
+
|
156
|
+
<p>Using this library, the query looks like this:</p>
|
157
|
+
|
158
|
+
<pre class="code ruby"><code class="ruby"><span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_ujson'><span class='object_link'><a href="Jylis.html#ujson-class_method" title="Jylis.ujson (method)">ujson</a></span></span><span class='period'>.</span><span class='id identifier rubyid_set'><span class='object_link'><a href="Jylis/DataType/UJSON.html#set-instance_method" title="Jylis::DataType::UJSON#set (method)">set</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>fruit</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>apple</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>properties</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='lbrace'>{</span><span class='label'>color:</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>red</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='label'>ripe:</span> <span class='kw'>true</span><span class='rbrace'>}</span>
|
159
|
+
</code></pre>
|
160
|
+
|
161
|
+
<p>The format for a query is:</p>
|
162
|
+
|
163
|
+
<pre class="code ruby"><code class="ruby">Jylis.<data_type>.<function> key(s), [value], [timestamp]
|
164
|
+
</code></pre>
|
165
|
+
|
166
|
+
<p>However, be sure to consult the <a
|
167
|
+
href="http://www.rubydoc.info/gems/jylis-rb">API documentation</a> or the
|
168
|
+
<a href="https://jemc.github.io/jylis/docs/types/">Jylis documentation</a>
|
169
|
+
for the exact format of your particular query.</p>
|
170
|
+
|
171
|
+
<h3 id="label-TREG">TREG</h3>
|
172
|
+
|
173
|
+
<p>Timestamped Register
|
174
|
+
<sup>[link[https://jemc.github.io/jylis/docs/types/treg/]]</sup></p>
|
175
|
+
|
176
|
+
<pre class="code ruby"><code class="ruby"><span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_treg'><span class='object_link'><a href="Jylis.html#treg-class_method" title="Jylis.treg (method)">treg</a></span></span><span class='period'>.</span><span class='id identifier rubyid_set'><span class='object_link'><a href="Jylis/DataType/TREG.html#set-instance_method" title="Jylis::DataType::TREG#set (method)">set</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>lamp_brightness</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='int'>80</span><span class='comma'>,</span> <span class='int'>1528082143</span>
|
177
|
+
|
178
|
+
<span class='id identifier rubyid_result'>result</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_treg'><span class='object_link'><a href="Jylis.html#treg-class_method" title="Jylis.treg (method)">treg</a></span></span><span class='period'>.</span><span class='id identifier rubyid_get'><span class='object_link'><a href="Jylis/DataType/TREG.html#get-instance_method" title="Jylis::DataType::TREG#get (method)">get</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>lamp_brightness</span><span class='tstring_end'>"</span></span>
|
179
|
+
<span class='comment'># => #<Jylis::DataType::TREG::Result:0x00005598dd3941c8 @timestamp=1528082143, @value="80">
|
180
|
+
</span>
|
181
|
+
<span class='id identifier rubyid_result'>result</span><span class='period'>.</span><span class='id identifier rubyid_value'>value</span>
|
182
|
+
<span class='comment'># => "80"
|
183
|
+
</span><span class='id identifier rubyid_result'>result</span><span class='period'>.</span><span class='id identifier rubyid_timestamp'>timestamp</span>
|
184
|
+
<span class='comment'># => 1528082143
|
185
|
+
</span></code></pre>
|
186
|
+
|
187
|
+
<h3 id="label-TLOG">TLOG</h3>
|
188
|
+
|
189
|
+
<p>Timestamped Log
|
190
|
+
<sup>[link[https://jemc.github.io/jylis/docs/types/tlog/]]</sup></p>
|
191
|
+
|
192
|
+
<pre class="code ruby"><code class="ruby"><span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_tlog'><span class='object_link'><a href="Jylis.html#tlog-class_method" title="Jylis.tlog (method)">tlog</a></span></span><span class='period'>.</span><span class='id identifier rubyid_ins'><span class='object_link'><a href="Jylis/DataType/TLOG.html#ins-instance_method" title="Jylis::DataType::TLOG#ins (method)">ins</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>temperature</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='float'>68.8</span><span class='comma'>,</span> <span class='int'>1528082150</span>
|
193
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_tlog'><span class='object_link'><a href="Jylis.html#tlog-class_method" title="Jylis.tlog (method)">tlog</a></span></span><span class='period'>.</span><span class='id identifier rubyid_ins'><span class='object_link'><a href="Jylis/DataType/TLOG.html#ins-instance_method" title="Jylis::DataType::TLOG#ins (method)">ins</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>temperature</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='float'>70.1</span><span class='comma'>,</span> <span class='int'>1528082160</span>
|
194
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_tlog'><span class='object_link'><a href="Jylis.html#tlog-class_method" title="Jylis.tlog (method)">tlog</a></span></span><span class='period'>.</span><span class='id identifier rubyid_ins'><span class='object_link'><a href="Jylis/DataType/TLOG.html#ins-instance_method" title="Jylis::DataType::TLOG#ins (method)">ins</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>temperature</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='float'>73.6</span><span class='comma'>,</span> <span class='int'>1528082170</span>
|
195
|
+
|
196
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_tlog'><span class='object_link'><a href="Jylis.html#tlog-class_method" title="Jylis.tlog (method)">tlog</a></span></span><span class='period'>.</span><span class='id identifier rubyid_size'><span class='object_link'><a href="Jylis/DataType/TLOG.html#size-instance_method" title="Jylis::DataType::TLOG#size (method)">size</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>temperature</span><span class='tstring_end'>"</span></span>
|
197
|
+
<span class='comment'># => 3
|
198
|
+
</span>
|
199
|
+
<span class='id identifier rubyid_result'>result</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_tlog'><span class='object_link'><a href="Jylis.html#tlog-class_method" title="Jylis.tlog (method)">tlog</a></span></span><span class='period'>.</span><span class='id identifier rubyid_get'><span class='object_link'><a href="Jylis/DataType/TLOG.html#get-instance_method" title="Jylis::DataType::TLOG#get (method)">get</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>temperature</span><span class='tstring_end'>"</span></span>
|
200
|
+
<span class='comment'># => #<Jylis::DataType::TLOG::Result:0x00005598dd345d20
|
201
|
+
</span><span class='comment'># @rows=
|
202
|
+
</span><span class='comment'># [#<Jylis::DataType::TLOG::Row:0x00005598dd345d98 @timestamp=1528082170, @value="73.6">,
|
203
|
+
</span><span class='comment'># #<Jylis::DataType::TLOG::Row:0x00005598dd345d70 @timestamp=1528082160, @value="70.1">,
|
204
|
+
</span><span class='comment'># #<Jylis::DataType::TLOG::Row:0x00005598dd345d48 @timestamp=1528082150, @value="68.8">]>
|
205
|
+
</span>
|
206
|
+
<span class='id identifier rubyid_result'>result</span><span class='period'>.</span><span class='id identifier rubyid_first'>first</span><span class='period'>.</span><span class='id identifier rubyid_value'>value</span>
|
207
|
+
<span class='comment'># => "73.6"
|
208
|
+
</span><span class='id identifier rubyid_result'>result</span><span class='period'>.</span><span class='id identifier rubyid_first'>first</span><span class='period'>.</span><span class='id identifier rubyid_timestamp'>timestamp</span>
|
209
|
+
<span class='comment'># => 1528082170
|
210
|
+
</span>
|
211
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_tlog'><span class='object_link'><a href="Jylis.html#tlog-class_method" title="Jylis.tlog (method)">tlog</a></span></span><span class='period'>.</span><span class='id identifier rubyid_trim'><span class='object_link'><a href="Jylis/DataType/TLOG.html#trim-instance_method" title="Jylis::DataType::TLOG#trim (method)">trim</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>temperature</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='int'>1</span>
|
212
|
+
|
213
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_tlog'><span class='object_link'><a href="Jylis.html#tlog-class_method" title="Jylis.tlog (method)">tlog</a></span></span><span class='period'>.</span><span class='id identifier rubyid_get'><span class='object_link'><a href="Jylis/DataType/TLOG.html#get-instance_method" title="Jylis::DataType::TLOG#get (method)">get</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>temperature</span><span class='tstring_end'>"</span></span>
|
214
|
+
<span class='comment'># => #<Jylis::DataType::TLOG::Result:0x00005598dd2faac8
|
215
|
+
</span><span class='comment'># @rows=[#<Jylis::DataType::TLOG::Row:0x00005598dd2faaf0 @timestamp=1528082170, @value="73.6">]>
|
216
|
+
</span>
|
217
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_tlog'><span class='object_link'><a href="Jylis.html#tlog-class_method" title="Jylis.tlog (method)">tlog</a></span></span><span class='period'>.</span><span class='id identifier rubyid_cutoff'><span class='object_link'><a href="Jylis/DataType/TLOG.html#cutoff-instance_method" title="Jylis::DataType::TLOG#cutoff (method)">cutoff</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>temperature</span><span class='tstring_end'>"</span></span>
|
218
|
+
<span class='comment'># => 1528082170
|
219
|
+
</span></code></pre>
|
220
|
+
|
221
|
+
<h3 id="label-GCOUNT">GCOUNT</h3>
|
222
|
+
|
223
|
+
<p>Grow-Only Counter
|
224
|
+
<sup>[link[https://jemc.github.io/jylis/docs/types/gcount/]]</sup></p>
|
225
|
+
|
226
|
+
<pre class="code ruby"><code class="ruby"><span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_gcount'><span class='object_link'><a href="Jylis.html#gcount-class_method" title="Jylis.gcount (method)">gcount</a></span></span><span class='period'>.</span><span class='id identifier rubyid_inc'><span class='object_link'><a href="Jylis/DataType/GCOUNT.html#inc-instance_method" title="Jylis::DataType::GCOUNT#inc (method)">inc</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>mileage</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='int'>10</span>
|
227
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_gcount'><span class='object_link'><a href="Jylis.html#gcount-class_method" title="Jylis.gcount (method)">gcount</a></span></span><span class='period'>.</span><span class='id identifier rubyid_inc'><span class='object_link'><a href="Jylis/DataType/GCOUNT.html#inc-instance_method" title="Jylis::DataType::GCOUNT#inc (method)">inc</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>mileage</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='int'>5</span>
|
228
|
+
|
229
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_gcount'><span class='object_link'><a href="Jylis.html#gcount-class_method" title="Jylis.gcount (method)">gcount</a></span></span><span class='period'>.</span><span class='id identifier rubyid_get'><span class='object_link'><a href="Jylis/DataType/GCOUNT.html#get-instance_method" title="Jylis::DataType::GCOUNT#get (method)">get</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>mileage</span><span class='tstring_end'>"</span></span>
|
230
|
+
<span class='comment'># => 15
|
231
|
+
</span></code></pre>
|
232
|
+
|
233
|
+
<h3 id="label-PNCOUNT">PNCOUNT</h3>
|
234
|
+
|
235
|
+
<p>Positive/Negative Counter
|
236
|
+
<sup>[link[https://jemc.github.io/jylis/docs/types/pncount/]]</sup></p>
|
237
|
+
|
238
|
+
<pre class="code ruby"><code class="ruby"><span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_pncount'><span class='object_link'><a href="Jylis.html#pncount-class_method" title="Jylis.pncount (method)">pncount</a></span></span><span class='period'>.</span><span class='id identifier rubyid_inc'><span class='object_link'><a href="Jylis/DataType/PNCOUNT.html#inc-instance_method" title="Jylis::DataType::PNCOUNT#inc (method)">inc</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>subscribers</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='int'>3</span>
|
239
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_pncount'><span class='object_link'><a href="Jylis.html#pncount-class_method" title="Jylis.pncount (method)">pncount</a></span></span><span class='period'>.</span><span class='id identifier rubyid_dec'><span class='object_link'><a href="Jylis/DataType/PNCOUNT.html#dec-instance_method" title="Jylis::DataType::PNCOUNT#dec (method)">dec</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>subscribers</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='int'>1</span>
|
240
|
+
|
241
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_pncount'><span class='object_link'><a href="Jylis.html#pncount-class_method" title="Jylis.pncount (method)">pncount</a></span></span><span class='period'>.</span><span class='id identifier rubyid_get'><span class='object_link'><a href="Jylis/DataType/PNCOUNT.html#get-instance_method" title="Jylis::DataType::PNCOUNT#get (method)">get</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>subscribers</span><span class='tstring_end'>"</span></span>
|
242
|
+
<span class='comment'># => 2
|
243
|
+
</span></code></pre>
|
244
|
+
|
245
|
+
<h3 id="label-MVREG">MVREG</h3>
|
246
|
+
|
247
|
+
<p>Multi-Value Register
|
248
|
+
<sup>[link[https://jemc.github.io/jylis/docs/types/mvreg/]]</sup></p>
|
249
|
+
|
250
|
+
<pre class="code ruby"><code class="ruby"><span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_mvreg'><span class='object_link'><a href="Jylis.html#mvreg-class_method" title="Jylis.mvreg (method)">mvreg</a></span></span><span class='period'>.</span><span class='id identifier rubyid_set'><span class='object_link'><a href="Jylis/DataType/MVREG.html#set-instance_method" title="Jylis::DataType::MVREG#set (method)">set</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>thermostat</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='int'>68</span>
|
251
|
+
|
252
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_mvreg'><span class='object_link'><a href="Jylis.html#mvreg-class_method" title="Jylis.mvreg (method)">mvreg</a></span></span><span class='period'>.</span><span class='id identifier rubyid_get'><span class='object_link'><a href="Jylis/DataType/MVREG.html#get-instance_method" title="Jylis::DataType::MVREG#get (method)">get</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>thermostat</span><span class='tstring_end'>"</span></span>
|
253
|
+
<span class='comment'># => ["68"]
|
254
|
+
</span></code></pre>
|
255
|
+
|
256
|
+
<h3 id="label-UJSON">UJSON</h3>
|
257
|
+
|
258
|
+
<p>Unordered JSON
|
259
|
+
<sup>[link[https://jemc.github.io/jylis/docs/types/ujson/]]</sup></p>
|
260
|
+
|
261
|
+
<pre class="code ruby"><code class="ruby"><span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_ujson'><span class='object_link'><a href="Jylis.html#ujson-class_method" title="Jylis.ujson (method)">ujson</a></span></span><span class='period'>.</span><span class='id identifier rubyid_set'><span class='object_link'><a href="Jylis/DataType/UJSON.html#set-instance_method" title="Jylis::DataType::UJSON#set (method)">set</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>users</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>alice</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>admin</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='kw'>false</span>
|
262
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_ujson'><span class='object_link'><a href="Jylis.html#ujson-class_method" title="Jylis.ujson (method)">ujson</a></span></span><span class='period'>.</span><span class='id identifier rubyid_set'><span class='object_link'><a href="Jylis/DataType/UJSON.html#set-instance_method" title="Jylis::DataType::UJSON#set (method)">set</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>users</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>brett</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>admin</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='kw'>false</span>
|
263
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_ujson'><span class='object_link'><a href="Jylis.html#ujson-class_method" title="Jylis.ujson (method)">ujson</a></span></span><span class='period'>.</span><span class='id identifier rubyid_set'><span class='object_link'><a href="Jylis/DataType/UJSON.html#set-instance_method" title="Jylis::DataType::UJSON#set (method)">set</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>users</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>carol</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>admin</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='kw'>true</span>
|
264
|
+
|
265
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_ujson'><span class='object_link'><a href="Jylis.html#ujson-class_method" title="Jylis.ujson (method)">ujson</a></span></span><span class='period'>.</span><span class='id identifier rubyid_get'><span class='object_link'><a href="Jylis/DataType/UJSON.html#get-instance_method" title="Jylis::DataType::UJSON#get (method)">get</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>users</span><span class='tstring_end'>"</span></span>
|
266
|
+
<span class='comment'># => {"brett"=>{"admin"=>false}, "carol"=>{"admin"=>true}, "alice"=>{"admin"=>false}}
|
267
|
+
</span>
|
268
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_ujson'><span class='object_link'><a href="Jylis.html#ujson-class_method" title="Jylis.ujson (method)">ujson</a></span></span><span class='period'>.</span><span class='id identifier rubyid_ins'><span class='object_link'><a href="Jylis/DataType/UJSON.html#ins-instance_method" title="Jylis::DataType::UJSON#ins (method)">ins</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>users</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>brett</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>banned</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='kw'>true</span>
|
269
|
+
|
270
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_ujson'><span class='object_link'><a href="Jylis.html#ujson-class_method" title="Jylis.ujson (method)">ujson</a></span></span><span class='period'>.</span><span class='id identifier rubyid_clr'><span class='object_link'><a href="Jylis/DataType/UJSON.html#clr-instance_method" title="Jylis::DataType::UJSON#clr (method)">clr</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>users</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>alice</span><span class='tstring_end'>"</span></span>
|
271
|
+
|
272
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_ujson'><span class='object_link'><a href="Jylis.html#ujson-class_method" title="Jylis.ujson (method)">ujson</a></span></span><span class='period'>.</span><span class='id identifier rubyid_get'><span class='object_link'><a href="Jylis/DataType/UJSON.html#get-instance_method" title="Jylis::DataType::UJSON#get (method)">get</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>users</span><span class='tstring_end'>"</span></span>
|
273
|
+
<span class='comment'># => {"brett"=>{"banned"=>true, "admin"=>false}, "carol"=>{"admin"=>true}}
|
274
|
+
</span></code></pre>
|
275
|
+
|
276
|
+
<h3 id="label-Raw+Query">Raw Query</h3>
|
277
|
+
|
278
|
+
<p>If this library doesn't contain a method for the query you would like
|
279
|
+
to perform, you can construct the query yourself by calling
|
280
|
+
<code>Jylis.query</code>. However, be aware that this method is
|
281
|
+
non-idiomatic and may require you to do your own pre/post processing on the
|
282
|
+
data.</p>
|
283
|
+
|
284
|
+
<pre class="code ruby"><code class="ruby"><span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_query'><span class='object_link'><a href="Jylis.html#query-class_method" title="Jylis.query (method)">query</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>TLOG</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>INS</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>temperature</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='float'>72.6</span><span class='comma'>,</span> <span class='int'>5</span>
|
285
|
+
<span class='comment'># => "OK"
|
286
|
+
</span>
|
287
|
+
<span class='const'><span class='object_link'><a href="Jylis.html" title="Jylis (class)">Jylis</a></span></span><span class='period'>.</span><span class='id identifier rubyid_query'><span class='object_link'><a href="Jylis.html#query-class_method" title="Jylis.query (method)">query</a></span></span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>TLOG</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>GET</span><span class='tstring_end'>"</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>temperature</span><span class='tstring_end'>"</span></span>
|
288
|
+
<span class='comment'># => [["72.6", 5]]
|
289
|
+
</span></code></pre>
|
70
290
|
</div></div>
|
71
291
|
|
72
292
|
<div id="footer">
|
73
|
-
Generated on
|
293
|
+
Generated on Sun Jun 3 21:46:59 2018 by
|
74
294
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
75
|
-
0.9.
|
295
|
+
0.9.14 (ruby-2.5.1).
|
76
296
|
</div>
|
77
297
|
|
78
298
|
</div>
|
data/doc/method_list.html
CHANGED
@@ -44,6 +44,518 @@
|
|
44
44
|
<ul id="full_list" class="method">
|
45
45
|
|
46
46
|
|
47
|
+
<li class="odd ">
|
48
|
+
<div class="item">
|
49
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG/Row.html#==-instance_method" title="Jylis::DataType::TLOG::Row#== (method)">#==</a></span>
|
50
|
+
<small>Jylis::DataType::TLOG::Row</small>
|
51
|
+
</div>
|
52
|
+
</li>
|
53
|
+
|
54
|
+
|
55
|
+
<li class="even ">
|
56
|
+
<div class="item">
|
57
|
+
<span class='object_link'><a href="Jylis/DataType/TREG/Result.html#==-instance_method" title="Jylis::DataType::TREG::Result#== (method)">#==</a></span>
|
58
|
+
<small>Jylis::DataType::TREG::Result</small>
|
59
|
+
</div>
|
60
|
+
</li>
|
61
|
+
|
62
|
+
|
63
|
+
<li class="odd ">
|
64
|
+
<div class="item">
|
65
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG/Result.html#[]-instance_method" title="Jylis::DataType::TLOG::Result#[] (method)">#[]</a></span>
|
66
|
+
<small>Jylis::DataType::TLOG::Result</small>
|
67
|
+
</div>
|
68
|
+
</li>
|
69
|
+
|
70
|
+
|
71
|
+
<li class="even ">
|
72
|
+
<div class="item">
|
73
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG.html#clr-instance_method" title="Jylis::DataType::TLOG#clr (method)">#clr</a></span>
|
74
|
+
<small>Jylis::DataType::TLOG</small>
|
75
|
+
</div>
|
76
|
+
</li>
|
77
|
+
|
78
|
+
|
79
|
+
<li class="odd ">
|
80
|
+
<div class="item">
|
81
|
+
<span class='object_link'><a href="Jylis/DataType/UJSON.html#clr-instance_method" title="Jylis::DataType::UJSON#clr (method)">#clr</a></span>
|
82
|
+
<small>Jylis::DataType::UJSON</small>
|
83
|
+
</div>
|
84
|
+
</li>
|
85
|
+
|
86
|
+
|
87
|
+
<li class="even ">
|
88
|
+
<div class="item">
|
89
|
+
<span class='object_link'><a href="Jylis.html#connect-class_method" title="Jylis.connect (method)">connect</a></span>
|
90
|
+
<small>Jylis</small>
|
91
|
+
</div>
|
92
|
+
</li>
|
93
|
+
|
94
|
+
|
95
|
+
<li class="odd ">
|
96
|
+
<div class="item">
|
97
|
+
<span class='object_link'><a href="Jylis.html#connected%3F-class_method" title="Jylis.connected? (method)">connected?</a></span>
|
98
|
+
<small>Jylis</small>
|
99
|
+
</div>
|
100
|
+
</li>
|
101
|
+
|
102
|
+
|
103
|
+
<li class="even ">
|
104
|
+
<div class="item">
|
105
|
+
<span class='object_link'><a href="Jylis/Connection.html#connected%3F-instance_method" title="Jylis::Connection#connected? (method)">#connected?</a></span>
|
106
|
+
<small>Jylis::Connection</small>
|
107
|
+
</div>
|
108
|
+
</li>
|
109
|
+
|
110
|
+
|
111
|
+
<li class="odd ">
|
112
|
+
<div class="item">
|
113
|
+
<span class='object_link'><a href="Jylis/DataType/Base.html#connection-instance_method" title="Jylis::DataType::Base#connection (method)">#connection</a></span>
|
114
|
+
<small>Jylis::DataType::Base</small>
|
115
|
+
</div>
|
116
|
+
</li>
|
117
|
+
|
118
|
+
|
119
|
+
<li class="even ">
|
120
|
+
<div class="item">
|
121
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG/Result.html#count-instance_method" title="Jylis::DataType::TLOG::Result#count (method)">#count</a></span>
|
122
|
+
<small>Jylis::DataType::TLOG::Result</small>
|
123
|
+
</div>
|
124
|
+
</li>
|
125
|
+
|
126
|
+
|
127
|
+
<li class="odd ">
|
128
|
+
<div class="item">
|
129
|
+
<span class='object_link'><a href="Jylis.html#current-class_method" title="Jylis.current (method)">current</a></span>
|
130
|
+
<small>Jylis</small>
|
131
|
+
</div>
|
132
|
+
</li>
|
133
|
+
|
134
|
+
|
135
|
+
<li class="even ">
|
136
|
+
<div class="item">
|
137
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG.html#cutoff-instance_method" title="Jylis::DataType::TLOG#cutoff (method)">#cutoff</a></span>
|
138
|
+
<small>Jylis::DataType::TLOG</small>
|
139
|
+
</div>
|
140
|
+
</li>
|
141
|
+
|
142
|
+
|
143
|
+
<li class="odd ">
|
144
|
+
<div class="item">
|
145
|
+
<span class='object_link'><a href="Jylis/DataType/PNCOUNT.html#dec-instance_method" title="Jylis::DataType::PNCOUNT#dec (method)">#dec</a></span>
|
146
|
+
<small>Jylis::DataType::PNCOUNT</small>
|
147
|
+
</div>
|
148
|
+
</li>
|
149
|
+
|
150
|
+
|
151
|
+
<li class="even ">
|
152
|
+
<div class="item">
|
153
|
+
<span class='object_link'><a href="Jylis.html#disconnect-class_method" title="Jylis.disconnect (method)">disconnect</a></span>
|
154
|
+
<small>Jylis</small>
|
155
|
+
</div>
|
156
|
+
</li>
|
157
|
+
|
158
|
+
|
159
|
+
<li class="odd ">
|
160
|
+
<div class="item">
|
161
|
+
<span class='object_link'><a href="Jylis/Connection.html#disconnect-instance_method" title="Jylis::Connection#disconnect (method)">#disconnect</a></span>
|
162
|
+
<small>Jylis::Connection</small>
|
163
|
+
</div>
|
164
|
+
</li>
|
165
|
+
|
166
|
+
|
167
|
+
<li class="even ">
|
168
|
+
<div class="item">
|
169
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG/Result.html#each-instance_method" title="Jylis::DataType::TLOG::Result#each (method)">#each</a></span>
|
170
|
+
<small>Jylis::DataType::TLOG::Result</small>
|
171
|
+
</div>
|
172
|
+
</li>
|
173
|
+
|
174
|
+
|
175
|
+
<li class="odd ">
|
176
|
+
<div class="item">
|
177
|
+
<span class='object_link'><a href="Jylis.html#gcount-class_method" title="Jylis.gcount (method)">gcount</a></span>
|
178
|
+
<small>Jylis</small>
|
179
|
+
</div>
|
180
|
+
</li>
|
181
|
+
|
182
|
+
|
183
|
+
<li class="even ">
|
184
|
+
<div class="item">
|
185
|
+
<span class='object_link'><a href="Jylis/Connection.html#gcount-instance_method" title="Jylis::Connection#gcount (method)">#gcount</a></span>
|
186
|
+
<small>Jylis::Connection</small>
|
187
|
+
</div>
|
188
|
+
</li>
|
189
|
+
|
190
|
+
|
191
|
+
<li class="odd ">
|
192
|
+
<div class="item">
|
193
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG.html#get-instance_method" title="Jylis::DataType::TLOG#get (method)">#get</a></span>
|
194
|
+
<small>Jylis::DataType::TLOG</small>
|
195
|
+
</div>
|
196
|
+
</li>
|
197
|
+
|
198
|
+
|
199
|
+
<li class="even ">
|
200
|
+
<div class="item">
|
201
|
+
<span class='object_link'><a href="Jylis/DataType/TREG.html#get-instance_method" title="Jylis::DataType::TREG#get (method)">#get</a></span>
|
202
|
+
<small>Jylis::DataType::TREG</small>
|
203
|
+
</div>
|
204
|
+
</li>
|
205
|
+
|
206
|
+
|
207
|
+
<li class="odd ">
|
208
|
+
<div class="item">
|
209
|
+
<span class='object_link'><a href="Jylis/DataType/MVREG.html#get-instance_method" title="Jylis::DataType::MVREG#get (method)">#get</a></span>
|
210
|
+
<small>Jylis::DataType::MVREG</small>
|
211
|
+
</div>
|
212
|
+
</li>
|
213
|
+
|
214
|
+
|
215
|
+
<li class="even ">
|
216
|
+
<div class="item">
|
217
|
+
<span class='object_link'><a href="Jylis/DataType/UJSON.html#get-instance_method" title="Jylis::DataType::UJSON#get (method)">#get</a></span>
|
218
|
+
<small>Jylis::DataType::UJSON</small>
|
219
|
+
</div>
|
220
|
+
</li>
|
221
|
+
|
222
|
+
|
223
|
+
<li class="odd ">
|
224
|
+
<div class="item">
|
225
|
+
<span class='object_link'><a href="Jylis/DataType/GCOUNT.html#get-instance_method" title="Jylis::DataType::GCOUNT#get (method)">#get</a></span>
|
226
|
+
<small>Jylis::DataType::GCOUNT</small>
|
227
|
+
</div>
|
228
|
+
</li>
|
229
|
+
|
230
|
+
|
231
|
+
<li class="even ">
|
232
|
+
<div class="item">
|
233
|
+
<span class='object_link'><a href="Jylis/DataType/PNCOUNT.html#get-instance_method" title="Jylis::DataType::PNCOUNT#get (method)">#get</a></span>
|
234
|
+
<small>Jylis::DataType::PNCOUNT</small>
|
235
|
+
</div>
|
236
|
+
</li>
|
237
|
+
|
238
|
+
|
239
|
+
<li class="odd ">
|
240
|
+
<div class="item">
|
241
|
+
<span class='object_link'><a href="Jylis/DataType/GCOUNT.html#inc-instance_method" title="Jylis::DataType::GCOUNT#inc (method)">#inc</a></span>
|
242
|
+
<small>Jylis::DataType::GCOUNT</small>
|
243
|
+
</div>
|
244
|
+
</li>
|
245
|
+
|
246
|
+
|
247
|
+
<li class="even ">
|
248
|
+
<div class="item">
|
249
|
+
<span class='object_link'><a href="Jylis/DataType/PNCOUNT.html#inc-instance_method" title="Jylis::DataType::PNCOUNT#inc (method)">#inc</a></span>
|
250
|
+
<small>Jylis::DataType::PNCOUNT</small>
|
251
|
+
</div>
|
252
|
+
</li>
|
253
|
+
|
254
|
+
|
255
|
+
<li class="odd ">
|
256
|
+
<div class="item">
|
257
|
+
<span class='object_link'><a href="Jylis/Connection.html#initialize-instance_method" title="Jylis::Connection#initialize (method)">#initialize</a></span>
|
258
|
+
<small>Jylis::Connection</small>
|
259
|
+
</div>
|
260
|
+
</li>
|
261
|
+
|
262
|
+
|
263
|
+
<li class="even ">
|
264
|
+
<div class="item">
|
265
|
+
<span class='object_link'><a href="Jylis/DataType/Base.html#initialize-instance_method" title="Jylis::DataType::Base#initialize (method)">#initialize</a></span>
|
266
|
+
<small>Jylis::DataType::Base</small>
|
267
|
+
</div>
|
268
|
+
</li>
|
269
|
+
|
270
|
+
|
271
|
+
<li class="odd ">
|
272
|
+
<div class="item">
|
273
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG/Result.html#initialize-instance_method" title="Jylis::DataType::TLOG::Result#initialize (method)">#initialize</a></span>
|
274
|
+
<small>Jylis::DataType::TLOG::Result</small>
|
275
|
+
</div>
|
276
|
+
</li>
|
277
|
+
|
278
|
+
|
279
|
+
<li class="even ">
|
280
|
+
<div class="item">
|
281
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG/Row.html#initialize-instance_method" title="Jylis::DataType::TLOG::Row#initialize (method)">#initialize</a></span>
|
282
|
+
<small>Jylis::DataType::TLOG::Row</small>
|
283
|
+
</div>
|
284
|
+
</li>
|
285
|
+
|
286
|
+
|
287
|
+
<li class="odd ">
|
288
|
+
<div class="item">
|
289
|
+
<span class='object_link'><a href="Jylis/DataType/TREG/Result.html#initialize-instance_method" title="Jylis::DataType::TREG::Result#initialize (method)">#initialize</a></span>
|
290
|
+
<small>Jylis::DataType::TREG::Result</small>
|
291
|
+
</div>
|
292
|
+
</li>
|
293
|
+
|
294
|
+
|
295
|
+
<li class="even ">
|
296
|
+
<div class="item">
|
297
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG.html#ins-instance_method" title="Jylis::DataType::TLOG#ins (method)">#ins</a></span>
|
298
|
+
<small>Jylis::DataType::TLOG</small>
|
299
|
+
</div>
|
300
|
+
</li>
|
301
|
+
|
302
|
+
|
303
|
+
<li class="odd ">
|
304
|
+
<div class="item">
|
305
|
+
<span class='object_link'><a href="Jylis/DataType/UJSON.html#ins-instance_method" title="Jylis::DataType::UJSON#ins (method)">#ins</a></span>
|
306
|
+
<small>Jylis::DataType::UJSON</small>
|
307
|
+
</div>
|
308
|
+
</li>
|
309
|
+
|
310
|
+
|
311
|
+
<li class="even ">
|
312
|
+
<div class="item">
|
313
|
+
<span class='object_link'><a href="Jylis.html#mvreg-class_method" title="Jylis.mvreg (method)">mvreg</a></span>
|
314
|
+
<small>Jylis</small>
|
315
|
+
</div>
|
316
|
+
</li>
|
317
|
+
|
318
|
+
|
319
|
+
<li class="odd ">
|
320
|
+
<div class="item">
|
321
|
+
<span class='object_link'><a href="Jylis/Connection.html#mvreg-instance_method" title="Jylis::Connection#mvreg (method)">#mvreg</a></span>
|
322
|
+
<small>Jylis::Connection</small>
|
323
|
+
</div>
|
324
|
+
</li>
|
325
|
+
|
326
|
+
|
327
|
+
<li class="even ">
|
328
|
+
<div class="item">
|
329
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG/Result.html#parse-class_method" title="Jylis::DataType::TLOG::Result.parse (method)">parse</a></span>
|
330
|
+
<small>Jylis::DataType::TLOG::Result</small>
|
331
|
+
</div>
|
332
|
+
</li>
|
333
|
+
|
334
|
+
|
335
|
+
<li class="odd ">
|
336
|
+
<div class="item">
|
337
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG/Row.html#parse-class_method" title="Jylis::DataType::TLOG::Row.parse (method)">parse</a></span>
|
338
|
+
<small>Jylis::DataType::TLOG::Row</small>
|
339
|
+
</div>
|
340
|
+
</li>
|
341
|
+
|
342
|
+
|
343
|
+
<li class="even ">
|
344
|
+
<div class="item">
|
345
|
+
<span class='object_link'><a href="Jylis/DataType/TREG/Result.html#parse-class_method" title="Jylis::DataType::TREG::Result.parse (method)">parse</a></span>
|
346
|
+
<small>Jylis::DataType::TREG::Result</small>
|
347
|
+
</div>
|
348
|
+
</li>
|
349
|
+
|
350
|
+
|
351
|
+
<li class="odd ">
|
352
|
+
<div class="item">
|
353
|
+
<span class='object_link'><a href="Jylis.html#pncount-class_method" title="Jylis.pncount (method)">pncount</a></span>
|
354
|
+
<small>Jylis</small>
|
355
|
+
</div>
|
356
|
+
</li>
|
357
|
+
|
358
|
+
|
359
|
+
<li class="even ">
|
360
|
+
<div class="item">
|
361
|
+
<span class='object_link'><a href="Jylis/Connection.html#pncount-instance_method" title="Jylis::Connection#pncount (method)">#pncount</a></span>
|
362
|
+
<small>Jylis::Connection</small>
|
363
|
+
</div>
|
364
|
+
</li>
|
365
|
+
|
366
|
+
|
367
|
+
<li class="odd ">
|
368
|
+
<div class="item">
|
369
|
+
<span class='object_link'><a href="Jylis.html#query-class_method" title="Jylis.query (method)">query</a></span>
|
370
|
+
<small>Jylis</small>
|
371
|
+
</div>
|
372
|
+
</li>
|
373
|
+
|
374
|
+
|
375
|
+
<li class="even ">
|
376
|
+
<div class="item">
|
377
|
+
<span class='object_link'><a href="Jylis/Connection.html#query-instance_method" title="Jylis::Connection#query (method)">#query</a></span>
|
378
|
+
<small>Jylis::Connection</small>
|
379
|
+
</div>
|
380
|
+
</li>
|
381
|
+
|
382
|
+
|
383
|
+
<li class="odd ">
|
384
|
+
<div class="item">
|
385
|
+
<span class='object_link'><a href="Jylis.html#reconnect-class_method" title="Jylis.reconnect (method)">reconnect</a></span>
|
386
|
+
<small>Jylis</small>
|
387
|
+
</div>
|
388
|
+
</li>
|
389
|
+
|
390
|
+
|
391
|
+
<li class="even ">
|
392
|
+
<div class="item">
|
393
|
+
<span class='object_link'><a href="Jylis/Connection.html#reconnect-instance_method" title="Jylis::Connection#reconnect (method)">#reconnect</a></span>
|
394
|
+
<small>Jylis::Connection</small>
|
395
|
+
</div>
|
396
|
+
</li>
|
397
|
+
|
398
|
+
|
399
|
+
<li class="odd ">
|
400
|
+
<div class="item">
|
401
|
+
<span class='object_link'><a href="Jylis/DataType/UJSON.html#rm-instance_method" title="Jylis::DataType::UJSON#rm (method)">#rm</a></span>
|
402
|
+
<small>Jylis::DataType::UJSON</small>
|
403
|
+
</div>
|
404
|
+
</li>
|
405
|
+
|
406
|
+
|
407
|
+
<li class="even ">
|
408
|
+
<div class="item">
|
409
|
+
<span class='object_link'><a href="Jylis/DataType/TREG.html#set-instance_method" title="Jylis::DataType::TREG#set (method)">#set</a></span>
|
410
|
+
<small>Jylis::DataType::TREG</small>
|
411
|
+
</div>
|
412
|
+
</li>
|
413
|
+
|
414
|
+
|
415
|
+
<li class="odd ">
|
416
|
+
<div class="item">
|
417
|
+
<span class='object_link'><a href="Jylis/DataType/MVREG.html#set-instance_method" title="Jylis::DataType::MVREG#set (method)">#set</a></span>
|
418
|
+
<small>Jylis::DataType::MVREG</small>
|
419
|
+
</div>
|
420
|
+
</li>
|
421
|
+
|
422
|
+
|
423
|
+
<li class="even ">
|
424
|
+
<div class="item">
|
425
|
+
<span class='object_link'><a href="Jylis/DataType/UJSON.html#set-instance_method" title="Jylis::DataType::UJSON#set (method)">#set</a></span>
|
426
|
+
<small>Jylis::DataType::UJSON</small>
|
427
|
+
</div>
|
428
|
+
</li>
|
429
|
+
|
430
|
+
|
431
|
+
<li class="odd ">
|
432
|
+
<div class="item">
|
433
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG.html#size-instance_method" title="Jylis::DataType::TLOG#size (method)">#size</a></span>
|
434
|
+
<small>Jylis::DataType::TLOG</small>
|
435
|
+
</div>
|
436
|
+
</li>
|
437
|
+
|
438
|
+
|
439
|
+
<li class="even ">
|
440
|
+
<div class="item">
|
441
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG/Row.html#timestamp-instance_method" title="Jylis::DataType::TLOG::Row#timestamp (method)">#timestamp</a></span>
|
442
|
+
<small>Jylis::DataType::TLOG::Row</small>
|
443
|
+
</div>
|
444
|
+
</li>
|
445
|
+
|
446
|
+
|
447
|
+
<li class="odd ">
|
448
|
+
<div class="item">
|
449
|
+
<span class='object_link'><a href="Jylis/DataType/TREG/Result.html#timestamp-instance_method" title="Jylis::DataType::TREG::Result#timestamp (method)">#timestamp</a></span>
|
450
|
+
<small>Jylis::DataType::TREG::Result</small>
|
451
|
+
</div>
|
452
|
+
</li>
|
453
|
+
|
454
|
+
|
455
|
+
<li class="even ">
|
456
|
+
<div class="item">
|
457
|
+
<span class='object_link'><a href="Jylis.html#tlog-class_method" title="Jylis.tlog (method)">tlog</a></span>
|
458
|
+
<small>Jylis</small>
|
459
|
+
</div>
|
460
|
+
</li>
|
461
|
+
|
462
|
+
|
463
|
+
<li class="odd ">
|
464
|
+
<div class="item">
|
465
|
+
<span class='object_link'><a href="Jylis/Connection.html#tlog-instance_method" title="Jylis::Connection#tlog (method)">#tlog</a></span>
|
466
|
+
<small>Jylis::Connection</small>
|
467
|
+
</div>
|
468
|
+
</li>
|
469
|
+
|
470
|
+
|
471
|
+
<li class="even ">
|
472
|
+
<div class="item">
|
473
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG/Result.html#to_a-instance_method" title="Jylis::DataType::TLOG::Result#to_a (method)">#to_a</a></span>
|
474
|
+
<small>Jylis::DataType::TLOG::Result</small>
|
475
|
+
</div>
|
476
|
+
</li>
|
477
|
+
|
478
|
+
|
479
|
+
<li class="odd ">
|
480
|
+
<div class="item">
|
481
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG/Row.html#to_a-instance_method" title="Jylis::DataType::TLOG::Row#to_a (method)">#to_a</a></span>
|
482
|
+
<small>Jylis::DataType::TLOG::Row</small>
|
483
|
+
</div>
|
484
|
+
</li>
|
485
|
+
|
486
|
+
|
487
|
+
<li class="even ">
|
488
|
+
<div class="item">
|
489
|
+
<span class='object_link'><a href="Jylis/DataType/TREG/Result.html#to_a-instance_method" title="Jylis::DataType::TREG::Result#to_a (method)">#to_a</a></span>
|
490
|
+
<small>Jylis::DataType::TREG::Result</small>
|
491
|
+
</div>
|
492
|
+
</li>
|
493
|
+
|
494
|
+
|
495
|
+
<li class="odd ">
|
496
|
+
<div class="item">
|
497
|
+
<span class='object_link'><a href="Jylis.html#treg-class_method" title="Jylis.treg (method)">treg</a></span>
|
498
|
+
<small>Jylis</small>
|
499
|
+
</div>
|
500
|
+
</li>
|
501
|
+
|
502
|
+
|
503
|
+
<li class="even ">
|
504
|
+
<div class="item">
|
505
|
+
<span class='object_link'><a href="Jylis/Connection.html#treg-instance_method" title="Jylis::Connection#treg (method)">#treg</a></span>
|
506
|
+
<small>Jylis::Connection</small>
|
507
|
+
</div>
|
508
|
+
</li>
|
509
|
+
|
510
|
+
|
511
|
+
<li class="odd ">
|
512
|
+
<div class="item">
|
513
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG.html#trim-instance_method" title="Jylis::DataType::TLOG#trim (method)">#trim</a></span>
|
514
|
+
<small>Jylis::DataType::TLOG</small>
|
515
|
+
</div>
|
516
|
+
</li>
|
517
|
+
|
518
|
+
|
519
|
+
<li class="even ">
|
520
|
+
<div class="item">
|
521
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG.html#trimat-instance_method" title="Jylis::DataType::TLOG#trimat (method)">#trimat</a></span>
|
522
|
+
<small>Jylis::DataType::TLOG</small>
|
523
|
+
</div>
|
524
|
+
</li>
|
525
|
+
|
526
|
+
|
527
|
+
<li class="odd ">
|
528
|
+
<div class="item">
|
529
|
+
<span class='object_link'><a href="Jylis.html#ujson-class_method" title="Jylis.ujson (method)">ujson</a></span>
|
530
|
+
<small>Jylis</small>
|
531
|
+
</div>
|
532
|
+
</li>
|
533
|
+
|
534
|
+
|
535
|
+
<li class="even ">
|
536
|
+
<div class="item">
|
537
|
+
<span class='object_link'><a href="Jylis/Connection.html#ujson-instance_method" title="Jylis::Connection#ujson (method)">#ujson</a></span>
|
538
|
+
<small>Jylis::Connection</small>
|
539
|
+
</div>
|
540
|
+
</li>
|
541
|
+
|
542
|
+
|
543
|
+
<li class="odd ">
|
544
|
+
<div class="item">
|
545
|
+
<span class='object_link'><a href="Jylis/DataType/TLOG/Row.html#value-instance_method" title="Jylis::DataType::TLOG::Row#value (method)">#value</a></span>
|
546
|
+
<small>Jylis::DataType::TLOG::Row</small>
|
547
|
+
</div>
|
548
|
+
</li>
|
549
|
+
|
550
|
+
|
551
|
+
<li class="even ">
|
552
|
+
<div class="item">
|
553
|
+
<span class='object_link'><a href="Jylis/DataType/TREG/Result.html#value-instance_method" title="Jylis::DataType::TREG::Result#value (method)">#value</a></span>
|
554
|
+
<small>Jylis::DataType::TREG::Result</small>
|
555
|
+
</div>
|
556
|
+
</li>
|
557
|
+
|
558
|
+
|
47
559
|
|
48
560
|
</ul>
|
49
561
|
</div>
|