英[get] 美[ɡɛt]

vt. Get; catch; persuade; receive (punishment, etc.)

vt.& vi. Arrive, come

vi.Become; start; try to deal with; obtain benefits or wealth

n.Reproduction, cub; profit

Third person singular: gets Present participle: getting Past tense: got Past participle: gotgot

memcached get command syntax

Function: Get the value (data value) stored in key (key). If key does not exist, return empty.

Syntax: get key1 key2 key3

Parameters:

Parameter Description
keyKey value The key in the key-value structure is used to find the cache value.

memcached get command example

set runoob 0 900 9
memcached
STORED
get runoob
VALUE runoob 0 9
memcached
END