遠程服務器,redis 安裝在/opt下redis-4.0.10python
cd redis-4.0.10redis
修改配置文件redis.conf配置文件:(註釋掉bind:127.0.0.1)和修改保護模式爲no數據庫
修改另外一個配置文件:vim
vim redis-6379.conf,修改保護模式:服務器
啓動redis服務url
redis-server redis-6379.confspa
進入redis 客戶端code
redis-cliserver
# coding=utf8 """ author:dengjiyun """ import redis pool=redis.ConnectionPool(host='182.61.24.122',port=6379) r =redis.Redis(connection_pool=pool) # 從數據庫中獲取數據 name=r.get('name').decode('utf-8') print(name)
# coding=utf8 """ author:dengjiyun """ import redis pool=redis.ConnectionPool(host='182.61.24.122',port=6379) r =redis.Redis(connection_pool=pool) # set 集合 res=r.sadd('url_set','url1') # 當res=1,表示要添加的url不在 url_set 中 當res=0 時表示url已經存在url_set 從而實現去重的功能 if res: print('新添加成功!') # 此處可讓把該url直接讓爬蟲進行爬取 else: print('該url已經存在')