Module: Couchbase
- Defined in:
- lib/couchbase.rb,
lib/couchbase/dns.rb,
lib/couchbase/view.rb,
lib/couchbase/utils.rb,
lib/couchbase/bucket.rb,
lib/couchbase/result.rb,
lib/couchbase/cluster.rb,
lib/couchbase/version.rb,
lib/couchbase/view_row.rb,
lib/couchbase/constants.rb,
lib/couchbase/transcoder.rb,
lib/couchbase/connection_pool.rb,
ext/couchbase_ext/couchbase_ext.c
Overview
- Author
-
Couchbase <[email protected]>
- Copyright
-
2011-2012 Couchbase, Inc.
- License
-
Apache License, Version 2.0
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Defined Under Namespace
Modules: Constants, DNS, EM, Error, Transcoder Classes: Bucket, Cluster, ConnectionPool, DesignDoc, Result, Timer, Utils, View, ViewRow
Constant Summary collapse
- VERSION =
"1.3.7"
Class Attribute Summary collapse
-
.connection_options ⇒ Hash, String
Default connection options.
Class Method Summary collapse
-
.bucket(name = nil) ⇒ Bucket
The connection instance for current thread.
-
.bucket=(connection, name = nil) ⇒ Bucket
(also: set_bucket)
Set a connection instance for current thread.
-
.connect(*options) ⇒ Bucket
(also: new)
The method
connect
initializes new Bucket instance with all arguments passed. -
.libcouchbase_version ⇒ String
Version of the libcouchbase library currently loaded.
Class Attribute Details
.connection_options ⇒ Hash, String
Default connection options
76 77 78 |
# File 'lib/couchbase.rb', line 76 def @connection_options end |
Class Method Details
.bucket(name = nil) ⇒ Bucket
The connection instance for current thread
127 128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/couchbase.rb', line 127 def bucket(name = nil) verify_connection! name ||= case @connection_options when Hash @connection_options[:bucket] when String path = URI.parse(@connection_options).path path[%r(^(/pools/([A-Za-z0-9_.-]+)(/buckets/([A-Za-z0-9_.-]+))?)?), 3] || "default" else "default" end thread_storage[:bucket][name] ||= connect() end |
.bucket=(connection, name = nil) ⇒ Bucket Also known as: set_bucket
Set a connection instance for current thread
146 147 148 149 150 |
# File 'lib/couchbase.rb', line 146 def bucket=(connection, name = nil) verify_connection! name ||= @connection_options && @connection_options[:bucket] || "default" thread_storage[:bucket][name] = connection end |
.connect(*options) ⇒ Bucket Also known as: new
The method connect
initializes new Bucket instance with all arguments passed.
62 63 64 |
# File 'lib/couchbase.rb', line 62 def connect(*) Bucket.new(*(.flatten)) end |
.libcouchbase_version ⇒ String
Version of the libcouchbase library currently loaded
216 217 218 219 220 221 222 |
# File 'ext/couchbase_ext/couchbase_ext.c', line 216
static VALUE
cb_libcouchbase_version(VALUE self)
{
const char *ver = lcb_get_version(NULL);
(void)self;
return STR_NEW_CSTR(ver);
}
|