// Increment increments the value (interpreted as varint64 encoded) and // returns the newly incremented value (encoded as varint64). If no value // exists for the key, zero is incremented. func (r *Range) Increment(args *proto.IncrementRequest, reply *proto.IncrementResponse) { value, err := engine.Increment(r.engine, args.Key, args.Increment) reply.NewValue = value reply.SetGoError(err) }
// Increment increments the value (interpreted as varint64 encoded) and // returns the newly incremented value (encoded as varint64). If no value // exists for the key, zero is incremented. func (r *Range) Increment(batch engine.Engine, ms *engine.MVCCStats, args *proto.IncrementRequest, reply *proto.IncrementResponse) { val, err := engine.MVCCIncrement(batch, ms, args.Key, args.Timestamp, args.Txn, args.Increment) reply.NewValue = val reply.SetGoError(err) }
// Increment increments the value (interpreted as varint64 encoded) and // returns the newly incremented value (encoded as varint64). If no value // exists for the key, zero is incremented. func (r *Range) Increment(args *proto.IncrementRequest, reply *proto.IncrementResponse) { val, err := r.mvcc.Increment(args.Key, args.Timestamp, args.Txn, args.Increment) reply.NewValue = val reply.SetGoError(err) }