Type:
Class
SDBM provides a simple file-based key-value store, which can only store String keys and values.
Note that Ruby comes with the source code for SDBM, while the DBM and GDBM standard libraries rely on external libraries and headers.
Examples
Insert values:
1 2 3 4 5 6 7 8 | require 'sdbm' SDBM .open 'my_database' do |db| db[ 'apple' ] = 'fruit' db[ 'pear' ] = 'fruit' db[ 'carrot' ] = 'vegetable' db[ 'tomato' ] = 'vegetable' end |
Bulk update:
1 2 3 4 5 | require 'sdbm' SDBM .open 'my_database' do |db| db.update( 'peach' => 'fruit' , 'tomato' => 'fruit' ) end |
Retrieve values:
1 2 3 4 5 6 7 | require 'sdbm' SDBM .open 'my_database' do |db| db. each do |key, value| puts "Key: #{key}, Value: #{value}" end end |
Outputs:
1 2 3 4 5 | Key: apple, Value: fruit Key: pear, Value: fruit Key: carrot, Value: vegetable Key: peach, Value: fruit Key: tomato, Value: fruit |