leveldb
leveldb copied to clipboard
The LevelDB key-value database in the Go programming language.
pls update
Please Update your package
Golang 1.12.6 on i686 and armv7: ``` Testing in: /builddir/build/BUILD/leveldb-259d9253d71996b7778a3efb4144fe4892342b18/_build/src PATH: /builddir/build/BUILD/leveldb-259d9253d71996b7778a3efb4144fe4892342b18/_build/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin GOPATH: /builddir/build/BUILD/leveldb-259d9253d71996b7778a3efb4144fe4892342b18/_build:/usr/share/gocode GO111MODULE: off command: go test -buildmode pie -compiler gc -ldflags "-X github.com/golang/leveldb/version=0 -X github.com/golang/leveldb/version.commit=259d9253d71996b7778a3efb4144fe4892342b18 -extldflags '-Wl,-z,relro...
``` I do not know yet the project is still in development :) ``` Original issue reported on code.google.com by `[email protected]` on 27 Nov 2014 at 6:06
``` func (d *DB) Find(key []byte, opts *db.ReadOptions) db.Iterator { panic("unimplemented") } ```
``` >What steps will reproduce the problem? - Create new db - Write big chunk of data (>32kb in my case) - Close db - Reopen db >What is the...
``` Also, it would be great if issues were opened for what's remaining so others could pitch in. We'd really like to use this if it's close to the real...
``` To reproduce: 1. leveldb.db.Open a directory that doesn't exist 2. You will get the following error: "DB Error: leveldb: could not open CURRENT file for DB : open /CURRENT:...
``` I've been happily using the memdb implementation of db.DB and was wondering if there's a persistent implementation of db.DB in the works? ``` Original issue reported on code.google.com by...