A client cli for Memcached Server,which write by python.
Project description
首先,需要确保已经安装了Memcached服务器,这里我们以debian为例:
sudo apt-get install memcached
默认情况下,我们可以通过如下的方式启动:
memcached-cli 127.0.0.1:11211>
默认监听本地的11211端口,我们可以通过如下的2种方式来修改其监听的地址和端口:
通过`-b`或`–host`修改监听的地址
通过`-p`或`–port`修改监听的端口
然后我们可以进行如下的操作:
127.0.0.1:11211>get name None 127.0.0.1:11211>set name zhangsan True 127.0.0.1:11211>get name zhangsan
我们直接调用Memcached对应的命令传入对应的参数即可。 如果对某个命令不是很熟悉,可以通过输入1个`help`来查看当前支持的命令:
127.0.0.1:11211>help Documented commands (type help <topic>): ======================================== EOF check_key delete_many get gets_many quit set_multi add close delete_multi get_many help replace stats append decr exit get_multi incr set touch cas delete flush_all gets prepend set_many version
而后通过`help 对应的命令`查看其详细的参数说明:
127.0.0.1:11211>help get The memcached "get" command, but only for one key, as a convenience. Args: key: str, see class docs for details. Returns: The value for the key, or None if the key wasn't found.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Memcached-cli-0.1.dev0.tar.gz
.
File metadata
- Download URL: Memcached-cli-0.1.dev0.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1875607843438234231b663875d6ee47ce292a563d4a257c33b2fec23fa7eac3 |
|
MD5 | 3f182cebc6c9c014543caa11297c24f7 |
|
BLAKE2b-256 | 306949ba0f76f4d8a3737bf70801e140a21605d676cae5cd46fa41802ab40f12 |
File details
Details for the file Memcached_cli-0.1.dev0-py2.7.egg
.
File metadata
- Download URL: Memcached_cli-0.1.dev0-py2.7.egg
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f66ca8be361f3985e6024dc36a308fcab2392d91f50c5d79f3a27d07da2ee7bb |
|
MD5 | d01ba9df42146f9e04c01ee045233839 |
|
BLAKE2b-256 | f5148ee7ef381893fd9f2ce1a241fc8c72ccd949671d8b32a27d0bdf5a56f09d |