views:

30

answers:

1

It seems that if I use Berkeley DB (DBM) on Ruby, the hash's keys and values must be strings? Can they be other data type?

require 'dbm'

d = DBM.open('test1')

d[1] = 2
d[123] = 456
d[2] = 2.34
d['wa'] = Time.now.to_f

p d.keys
p d.values

Result:

C:\>ruby test_dbm.rb
["wa", "2", "1", "123"]
["1259229787.686", "2.34", "2", "456"]
+1  A: 

Yes, they do store key values as arbitrary byte strings that can be fixed-length or variable-length. I also realised that recently when I had to use bdb in one of our projects.

And you can see the key values on command line by typing

strings full/bdb/file/path

nas
strings... hmm... is it on Linux? On Windows, do you know how the line is?
動靜能量
its on unix command line / terminal and returns key and values
nas