Python memcache和redis

Posted Alex0425

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python memcache和redis相关的知识,希望对你有一定的参考价值。

1.memcache的安装

http://www.cnblogs.com/zgx/archive/2011/08/10/2134097.html

memcached -d -m 10    -u root -l 192.168.15.128 -p 12000 -c 256 -P /tmp/memcached.pid

参数说明:
    -d 是启动一个守护进程
    -m 是分配给Memcache使用的内存数量,单位是MB
    -u 是运行Memcache的用户
    -l 是监听的服务器IP地址
    -p 是设置Memcache监听的端口,最好是1024以上的端口
    -c 选项是最大运行的并发连接数,默认是1024,按照你服务器的负载量来设定
    -P 是设置保存Memcache的pid文件

2.在memcache模块中执行程序报错

a bytes-like object is required, not \'str\' - error

原因是:

python-memchached is not supported on python 3.5 If you\'ve used python-memchached, The following commands will help you.

pip uninstall python-memcached
pip install python3-memcached

3.memcache的示例

import memcache

mc = memcache.Client([\'192.168.15.128:12000\'],debug=True)
mc.set("some_key", "Some value")
ret = mc.get("some_key")
print (ret)
结果:
Some value

4.memcache的一些方法

http://www.cnblogs.com/wupeiqi/articles/5132791.html

 

以上是关于Python memcache和redis的主要内容,如果未能解决你的问题,请参考以下文章

python操作memcache/redis/rabbitmq

$Django 路飞之redis内存数据库安装,python中使用,与Memcached,mongodb的区别

Python 学习笔记 - Redis

Python自动化 第十一篇:Python进阶-RabbitMQ队列/Memcached/Redis

Python操作——Redi

为 memcached 和 Rails 组合片段和对象缓存的最佳方式