Code Monkey home page Code Monkey logo

Comments (8)

timshannon avatar timshannon commented on July 22, 2024

var bucket is only valid inside your Bolt().Update func.

https://godoc.org/github.com/etcd-io/bbolt#Tx.Bucket

You can't reference it outside of that transaction.

from bolthold.

hanjiangjiaolong avatar hanjiangjiaolong commented on July 22, 2024

but,i want get data,What i need to do

from bolthold.

timshannon avatar timshannon commented on July 22, 2024

You don't need to create the buckets manually.

Just insert your model:

store, err := bolthold.Open(filename, 0666, nil)
if err != nil {
	//handle error
}
err = store.Insert("king", &modeluserModel{
	UserName:    "king",
	Password: "2959802013_",
})

dwedw := &model.UserModel{}
_ = store.Get("king", dwedw)
fmt.Println(dwedw)

from bolthold.

hanjiangjiaolong avatar hanjiangjiaolong commented on July 22, 2024

When I have a default bucket, when I want to have a second bucket, should I innovate to create a store instance?

from bolthold.

timshannon avatar timshannon commented on July 22, 2024

I'm not exactly following what you mean, but if you want to manually create and manage buckets, then I wouldn't suggest using Bolthold. Bolthold creates and manages it's own buckets based on the name of the type.

from bolthold.

hanjiangjiaolong avatar hanjiangjiaolong commented on July 22, 2024

I have two types of data with different data structures, how to put them in the default bucket of Bolthold

from bolthold.

timshannon avatar timshannon commented on July 22, 2024

Bolthold automatically creates a bucket for each type you put in. Use a new type and you get a new bucket.

If you really need to store two different types in the same bucket you can use an anonymous struct and combine the two.

struct {
  Type1
  Type2
}

from bolthold.

hanjiangjiaolong avatar hanjiangjiaolong commented on July 22, 2024

This seems to be a good solution

from bolthold.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.