Method: MDBX::Database#keys
- Defined in:
- lib/mdbx/database.rb
#keys ⇒ Object
Returns a new Array containing all keys in the collection.
288 289 290 291 292 |
# File 'lib/mdbx/database.rb', line 288 def keys return self.conditional_snapshot do self.each_key.to_a end end |