Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

Memcached connection


May 17, 2021 Memcached



We can connect to the Memcached service through the telnet command and specify the host ip and port.

Grammar

telnet HOST PORT

HOST and PORT in the command are the IP and port that run the Memcached service.

Instance

The following example shows how to connect to the Memcached service and execute simple set and get commands.

The Memcached service for this instance runs on a host of 127.0.0.1 (local) and port 11211.

telnet 127.0.0.1 11211

Trying 127.0.0.1...

Connected to 127.0.0.1.

Escape character is '^]'.

set foo 0 0 3                                                   保存命令

bar                                                             数据

STORED                                                          结果

get foo                                                         取得命令

VALUE foo 0 3                                                   数据

bar                                                             数据

END                                                             结束行

quit                                                            退出