Class: Rufus::Edo::TableResultSet
- Inherits:
-
Object
- Object
- Rufus::Edo::TableResultSet
- Includes:
- Enumerable
- Defined in:
- lib/rufus/edo/tabcore.rb
Overview
The thing queries return
Instance Method Summary collapse
-
#each ⇒ Object
The classical each.
-
#free ⇒ Object
(also: #close, #destroy)
Frees this query (the underlying Tokyo Cabinet list structure).
-
#initialize(table, primary_keys, query_opts) ⇒ TableResultSet
constructor
A new instance of TableResultSet.
-
#size ⇒ Object
(also: #length)
Returns the count of element in this result set.
-
#to_a ⇒ Object
Returns an array of hashes.
Constructor Details
#initialize(table, primary_keys, query_opts) ⇒ TableResultSet
Returns a new instance of TableResultSet.
666 667 668 669 670 671 |
# File 'lib/rufus/edo/tabcore.rb', line 666 def initialize (table, primary_keys, query_opts) @table = table @keys = primary_keys @opts = query_opts end |
Instance Method Details
#each ⇒ Object
The classical each
684 685 686 687 688 689 690 691 692 693 694 695 |
# File 'lib/rufus/edo/tabcore.rb', line 684 def each @keys.each do |pk| if @opts[:pk_only] yield(pk) else val = @table[pk] val[:pk] = pk unless @opts[:no_pk] yield(val) end end end |
#free ⇒ Object Also known as: close, destroy
Frees this query (the underlying Tokyo Cabinet list structure)
706 707 708 709 |
# File 'lib/rufus/edo/tabcore.rb', line 706 def free # nothing to do, kept for similarity with Rufus::Tokyo end |
#size ⇒ Object Also known as: length
Returns the count of element in this result set
675 676 677 678 |
# File 'lib/rufus/edo/tabcore.rb', line 675 def size @keys.size end |
#to_a ⇒ Object
Returns an array of hashes
699 700 701 702 |
# File 'lib/rufus/edo/tabcore.rb', line 699 def to_a self.collect { |m| m } end |