tutorials

Tech stack collection about Tutorials Point -

View the Project on GitHub

Syntax

Memcached append command is used to add data in an existing key. This data is added at the end of the previous value.

The basic syntax of Memcached append command is as shown below

append key flags exptime bytes [noreply]
value

The keywords in the syntax are as described below −

Example

set tutorials 0 900 9
memcached
STORED
get tutorials
VALUE tutorials 0 14
memcached
END
append tutorials 0 900 5
redis
STORED
get tutorials
VALUE tutorials 0 14
memcachedredis
END