# connect to local Memcached
[root@dlp ~]# telnet localhost 11211
Trying ::1...
Connected to localhost.
Escape character is '^]'.
# show status of Memcached
stats
STAT pid 4496
STAT uptime 73
STAT time 1624247980
STAT version 1.5.22
STAT libevent 2.1.8-stable
STAT pointer_size 64
.....
.....
STAT moves_to_cold 0
STAT moves_to_warm 0
STAT moves_within_lru 0
STAT direct_reclaims 0
STAT lru_bumps_dropped 0
END
# save data (on memory)
# set [Key] [Flag] [Validity Term(sec)] [Data Size(byte)]
# Flag : 0=compression off, 1=compression on
# Validity Term=0 means indefinite
# after inputting command above, input a Value of the Key
set test_key 0 0 10
test_value
STORED
# refer to Value of a Key
get test_key
VALUE test_key 0 10
test_value
END
# replace Value of a Key
replace test_key 0 0 11
test_value2
STORED
get test_key
VALUE test_key 0 11
test_value2
END
# append Value of a Key
append test_key 0 0 5
,test
STORED
get test_key
VALUE test_key 0 16
test_value2,test
END
# prepend Value of a Key
prepend test_key 0 0 6
test1,
STORED
get test_key
VALUE test_key 0 22
test1,test_value2,test
END
# delete a Key
delete test_key
DELETED
# increment Value of a Key
set mycounter 0 0 1
1
STORED
incr mycounter 1
2
get mycounter
VALUE mycounter 0 1
2
END
# decrement Value of a Key
decr mycounter 1
1
get mycounter
VALUE mycounter 0 1
1
END
# delete all caching data on memory
flush_all
OK
# exit
quit
|