google.appengine.api.memcache.add

Sets a key's value if the item is not already in memcache.

key Key to set. See docs on Client for details.
value Value to set. Any type. If complex, will be pickled.
time Optional expiration time, either relative number of seconds from current time (up to 1 month), or an absolute Unix epoch time. By default, items never expire, though items may be evicted due to memory pressure. Float values will be rounded up to the nearest whole second.
min_compress_len Ignored option for compatibility.
namespace a string specifying an optional namespace to use in the request.

True if added. False on error.