Memcached – Set Data Memcached set command is used to set a new value to a new or existing key. Syntax The basic syntax of Memcached set command is as shown below − set key flags exptime bytes [noreply] value The keywords in the syntax are as described below − key − It is the […]
Author Archives: user
Memcached – Add Data Memcached add command is used to set a value to a new key. If the key already exists, then it gives the output NOT_STORED. Syntax The basic syntax of Memcached add command is as shown below − add key flags exptime bytes [noreply] value The keywords in the syntax are as […]
Memcached – Append Data Memcached append command is used to add some data in an existing key. The data is stored after the existing data of the key. Syntax 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 […]