We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i have created the app by
require 'leveldb' db = LevelDB::DB.new("test14.db") db.put "one","hi welcome3" puts db.get "one"
Now after closing this app how to open the database???
i tried
require 'leveldb' db = LevelDB::DB.new("test14.db") puts db.get "one"
But the above code throws error
ruby: symbol lookup error: /home/mounarajan/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/extensions/x86_64-linux/2.1.0-static/leveldb-ruby-0.15/leveldb/leveldb.so: undefined symbol: _ZN6snappy19MaxCompressedLengthEm
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i have created the app by
require 'leveldb'
db = LevelDB::DB.new("test14.db")
db.put "one","hi welcome3"
puts db.get "one"
Now after closing this app how to open the database???
i tried
require 'leveldb'
db = LevelDB::DB.new("test14.db")
puts db.get "one"
But the above code throws error
ruby: symbol lookup error: /home/mounarajan/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/extensions/x86_64-linux/2.1.0-static/leveldb-ruby-0.15/leveldb/leveldb.so: undefined symbol: _ZN6snappy19MaxCompressedLengthEm
The text was updated successfully, but these errors were encountered: