diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2016-03-22 09:03:09 -0600 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2016-03-22 09:03:09 -0600 |
commit | 08b033d92149a623c66990626fbc7df43e8a9087 (patch) | |
tree | a878750866be52455aa6290388b04ff720e98b45 | |
parent | v1.2.0 (diff) | |
parent | Merge remote-tracking branch 'boltdb/master' into project-list (diff) | |
download | dedo-08b033d92149a623c66990626fbc7df43e8a9087.tar.gz dedo-08b033d92149a623c66990626fbc7df43e8a9087.tar.xz |
Merge pull request #532 from asdine/project-list
Update README.md
-rw-r--r-- | README.md | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -437,7 +437,7 @@ all the keys in a bucket: db.View(func(tx *bolt.Tx) error { // Assume bucket exists and has keys b := tx.Bucket([]byte("MyBucket")) - + b.ForEach(func(k, v []byte) error { fmt.Printf("key=%s, value=%s\n", k, v) return nil @@ -617,7 +617,7 @@ Boltmobiledemo.BoltDB boltDB = Boltmobiledemo.NewBoltDB(path) { NSURL* URL= [NSURL fileURLWithPath: filePathString]; assert([[NSFileManager defaultManager] fileExistsAtPath: [URL path]]); - + NSError *error = nil; BOOL success = [URL setResourceValue: [NSNumber numberWithBool: YES] forKey: NSURLIsExcludedFromBackupKey error: &error]; @@ -840,5 +840,6 @@ Below is a list of public, open source projects that use Bolt: * [Go Report Card](https://goreportcard.com/) - Go code quality report cards as a (free and open source) service. * [Boltdb Boilerplate](https://github.com/bobintornado/boltdb-boilerplate) - Boilerplate wrapper around bolt aiming to make simple calls one-liners. * [lru](https://github.com/crowdriff/lru) - Easy to use Bolt-backed Least-Recently-Used (LRU) read-through cache with chainable remote stores. +* [Storm](https://github.com/asdine/storm) - A simple ORM around BoltDB. If you are using Bolt in a project please send a pull request to add it to the list. |