Module: Friendly
- Defined in:
- lib/friendly/uuid.rb,
lib/friendly.rb,
lib/friendly/cache.rb,
lib/friendly/index.rb,
lib/friendly/query.rb,
lib/friendly/scope.rb,
lib/friendly/table.rb,
lib/friendly/boolean.rb,
lib/friendly/indexer.rb,
lib/friendly/storage.rb,
lib/friendly/document.rb,
lib/friendly/attribute.rb,
lib/friendly/memcached.rb,
lib/friendly/data_store.rb,
lib/friendly/translator.rb,
lib/friendly/cache/by_id.rb,
lib/friendly/scope_proxy.rb,
lib/friendly/associations.rb,
lib/friendly/storage_proxy.rb,
lib/friendly/table_creator.rb,
lib/friendly/document/mixin.rb,
lib/friendly/document_table.rb,
lib/friendly/storage_factory.rb,
lib/friendly/associations/set.rb,
lib/friendly/document/scoping.rb,
lib/friendly/document/storage.rb,
lib/friendly/document/attributes.rb,
lib/friendly/document/convenience.rb,
lib/friendly/document/associations.rb,
lib/friendly/associations/association.rb
Overview
This class was extracted from the cassandra gem by Evan Weaver As such, it is distributed under the terms of the apache license. See the APACHE-LICENSE file in the root of this project for more information.
Defined Under Namespace
Modules: Associations, Boolean, Document Classes: Attribute, Cache, DataStore, DocumentTable, Error, Index, Indexer, Memcached, MissingIndex, NoConverterExists, NotSupported, Query, RecordNotFound, Scope, ScopeProxy, Storage, StorageFactory, StorageProxy, Table, TableCreator, Translator, UUID
Class Attribute Summary collapse
-
.cache ⇒ Object
Returns the value of attribute cache.
-
.datastore ⇒ Object
Returns the value of attribute datastore.
-
.db ⇒ Object
Returns the value of attribute db.
Class Method Summary collapse
Class Attribute Details
.cache ⇒ Object
Returns the value of attribute cache.
26 27 28 |
# File 'lib/friendly.rb', line 26 def cache @cache end |
.datastore ⇒ Object
Returns the value of attribute datastore.
26 27 28 |
# File 'lib/friendly.rb', line 26 def datastore @datastore end |
.db ⇒ Object
Returns the value of attribute db.
26 27 28 |
# File 'lib/friendly.rb', line 26 def db @db end |
Class Method Details
.batch ⇒ Object
33 34 35 36 37 38 39 40 41 |
# File 'lib/friendly.rb', line 33 def batch begin datastore.start_batch yield datastore.flush_batch ensure datastore.reset_batch end end |
.configure(config) ⇒ Object
28 29 30 31 |
# File 'lib/friendly.rb', line 28 def configure(config) self.db = Sequel.connect(config) self.datastore = DataStore.new(db) end |
.create_tables! ⇒ Object
43 44 45 |
# File 'lib/friendly.rb', line 43 def create_tables! Document.create_tables! end |