sbdb/README.md

57 lines
1.1 KiB
Markdown
Raw Normal View History

2010-02-23 20:43:05 +01:00
Dependencies
============
2011-08-25 11:15:32 +02:00
You need first the [Bdb](http://github.com/ruby-bdb/bdb) and of course [ruby](http://ruby-lang.org).
2010-02-23 20:43:05 +01:00
Download
========
via git:
2011-08-25 11:15:32 +02:00
git clone git://github.com/ruby-bdb/sbdb
2010-02-23 20:43:05 +01:00
Install
=======
gem build sbdb.gemspec
gem install sbdb-*.gem
Usage
=====
First, open environment and database
require 'sbdb'
Dir.mkdir 'newenv' rescue Errno::EEXIST
env = SBDB::Env.new 'newenv', SBDB::CREATE
db = env.open SBDB::Btree, 'newdb.db', :flags => SBDB::CREATE
It works nearly like a Ruby-Hash:
db['key'] = 'value'
db['key'] # => 'value'
db.to_hash # => {'key'=>'value'}
db.map {|k, v| [k, v].join ' => '} # => ["key => value"]
db.count # => 1
SBDB::DB#each uses a SBDB::Cursor:
cursor = db.cursor
cursor.each {|k,v| puts "#{k}: ${v}" }
**Don't forget to close everything, you've opened!**
cursor.close
db.close
env.close
But you can use a *lambda* to ensure to close everything:
SBDB::Env.new( 'newenv', SBDB::CREATE) do |env|
env.open SBDB::Btree, 'newdb.db', :flags => SBDB::CREATE do |db|
db.to_hash
end
end
SBDB::DB#to_hash creates a cursor and close it later.