Set writes the given item, unconditionally.
(c context.Context, item *Item)
| 378 | |
| 379 | // Set writes the given item, unconditionally. |
| 380 | func Set(c context.Context, item *Item) error { |
| 381 | return singleError(set(c, []*Item{item}, nil, pb.MemcacheSetRequest_SET)) |
| 382 | } |
| 383 | |
| 384 | // SetMulti is a batch version of Set. |
| 385 | // appengine.MultiError may be returned. |