(dmap, key string, value []byte)
| 184 | } |
| 185 | |
| 186 | func NewPutEntry(dmap, key string, value []byte) *PutEntry { |
| 187 | return &PutEntry{ |
| 188 | DMap: dmap, |
| 189 | Key: key, |
| 190 | Value: value, |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | func (p *PutEntry) Command(ctx context.Context) *redis.StatusCmd { |
| 195 | var args []interface{} |
no outgoing calls