05 2019 档案
摘要:1.设置redis键的过期时间(秒) : set key value ex 10 # 设置key的过期时间10秒 2.设置redis键的过期时间(毫秒): set key value px 5000 # 设置key5000毫秒后过期 3. 设置键,附带条件(NX和XX): set key value
阅读全文
摘要:# 链接数据库self.handle = redis.Redis(host=host, port=port, db=db, password=password, decode_responses=True)# 设置过期时间500秒, 通过ex参数设置 self.handle.set(key, val
阅读全文
摘要:相关知识:redis 内存数据集大小上升到一定大小的时候,就会施行数据淘汰策略。 redis 提供 6种数据淘汰策略: voltile-lru:从已设置过期时间的数据集(server.db[i].expires)中挑选最近最少使用的数据淘汰volatile-ttl:从已设置过期时间的数据集(serv
阅读全文
摘要:try: if cover: resp = requests.get('%s?x-oss-process=image/info' % (url), timeout=30) if resp.status_code == 200: rj = resp.json() article_data['c_h']
阅读全文
摘要:try: cursor.execute(sql_1) cursor.execute(sql_2) cursor.execute(sql_3) except Exception as e: connect.rollback() # 事务回滚 print('事务处理失败', e)else: connec
阅读全文
摘要:https://www.cnblogs.com/niuu/p/10107212.html 原文链接from Crypto.Cipher import AES import base64
阅读全文
摘要:1. 获取cookie: ssession = requests.Session() session.cookies.get_dict() # 获取字典形式的cookie 2.将cookiejar转为字典: cookies = requests.utils.dict_from_cookiejar(r
阅读全文
摘要:dt_now = datetime.datetime.now()print(dt_now)# 2019-05-09 14:44:32.555337获取日期,不含时分秒today = dt_now.date()print(today)# 2019-05-09
阅读全文