sql >> Databáze >  >> NoSQL >> MongoDB

Manipulace s vlastní BSON Marshaling

Vlastní bson Marshalling/Unmarshalling funguje téměř stejně, musíte implementovat rozhraní Getter a Setter

Něco takového by mělo fungovat :

type Currency struct {
    value        decimal.Decimal //The actual value of the currency.
    currencyCode string          //The ISO currency code.
}

// GetBSON implements bson.Getter.
func (c Currency) GetBSON() (interface{}, error) {
    f := c.Value().Float64()
    return struct {
        Value        float64 `json:"value" bson:"value"`
        CurrencyCode string  `json:"currencyCode" bson:"currencyCode"`
    }{
        Value:        f,
        CurrencyCode: c.currencyCode,
    }, nil
}

// SetBSON implements bson.Setter.
func (c *Currency) SetBSON(raw bson.Raw) error {

    decoded := new(struct {
        Value        float64 `json:"value" bson:"value"`
        CurrencyCode string  `json:"currencyCode" bson:"currencyCode"`
    })

    bsonErr := raw.Unmarshal(decoded)

    if bsonErr == nil {
        c.value = decimal.NewFromFloat(decoded.Value)
        c.currencyCode = decoded.CurrencyCode
        return nil
    } else {
        return bsonErr
    }
}



  1. Pochopení a správa diskového prostoru na vašem serveru MongoDB

  2. Redis Stack Exchange, jak odstranit nebo získat klíče podle vzoru

  3. Nasazení ScaleGrid DBaaS pro Redis™ ve virtuálním privátním cloudu AWS (VPC)

  4. Redis sentinels na stejných serverech jako master/slave?