Class: HBase::Model::ColumnDescriptor
- Defined in:
- lib/hbase/model/column_descriptor.rb
Constant Summary collapse
- AVAILABLE_OPTS =
{ :name => "name", :max_versions => "max-versions", :compression => "compression", :in_memory => "in-memory", :block_cache => "block-cache", :max_cell_size => "max-cell-size", :ttl => "time-to-live", :bloomfilter => "bloomfilter"}
Instance Attribute Summary collapse
-
#bloomfilter ⇒ Object
Returns the value of attribute bloomfilter.
-
#compression ⇒ Object
Returns the value of attribute compression.
-
#max_versions ⇒ Object
Returns the value of attribute max_versions.
-
#maximum_cell_size ⇒ Object
Returns the value of attribute maximum_cell_size.
-
#name ⇒ Object
Returns the value of attribute name.
Method Summary
Methods inherited from Record
Constructor Details
This class inherits a constructor from HBase::Model::Record
Instance Attribute Details
#bloomfilter ⇒ Object
Returns the value of attribute bloomfilter.
27 28 29 |
# File 'lib/hbase/model/column_descriptor.rb', line 27 def bloomfilter @bloomfilter end |
#compression ⇒ Object
Returns the value of attribute compression.
26 27 28 |
# File 'lib/hbase/model/column_descriptor.rb', line 26 def compression @compression end |
#max_versions ⇒ Object
Returns the value of attribute max_versions.
29 30 31 |
# File 'lib/hbase/model/column_descriptor.rb', line 29 def max_versions @max_versions end |
#maximum_cell_size ⇒ Object
Returns the value of attribute maximum_cell_size.
28 29 30 |
# File 'lib/hbase/model/column_descriptor.rb', line 28 def maximum_cell_size @maximum_cell_size end |
#name ⇒ Object
Returns the value of attribute name.
25 26 27 |
# File 'lib/hbase/model/column_descriptor.rb', line 25 def name @name end |