分类

链接

2012 年 8 月
 12345
6789101112
13141516171819
20212223242526
2728293031  

近期文章

热门标签

新人福利,免费薅羊毛

C#操作REDIS例子

windows SEVER包:http://code.google.com/p/servicestack/wiki/RedisWindowsDownload windows仅用来测试,性能不如在linux下高.   c#使用: 引用的ServiceStackRedis:https://github.com/mythz/ServiceStack.Redis       static void Main(string[] args)            {                var Redis = new RedisClient("127.0.0.1", 6379);//redis服务IP和端口                #region =insert=                //var storeMembers = new List<string> { "jj", "lihui", "cc" };                ...

.NET, Redis 暂无评论 阅读(9,160)

python使用redis示例

用python操作redis数据库,先下载redis-py模块下载地址 https://github.com/andymccurdy/redis-py 在解压目录运行 python setup.py install安装模块 使用: import redis r = redis.Redis(host=’localhost’, port=6379, db=0) r['test'] = ‘test’ #或者可以r.set(‘test’, ‘test’) 设置key r.get(‘test’)  #获取test的值 r.delete(‘test’) #删除这个key r.flushdb() #清空数据库 r.keys() #列出所有key r.exists(‘test’) #检测这个key是否存在 r.dbsize() #数据库中多少个条数

Redis 暂无评论 阅读(2,754)