flask有内置的session,但是我们如果想要保存在数据库或者文件中,需要使用插件。安装:
pip install flask-session
使用方法很简单,在配置中替换一下即可
from flask import Flask,session from flask_session import RedisSessionInterface import redis conn = redis.Redis("127.0.0.1",6379) app = Flask(__name__) app.session_interface=RedisSessionInterface(conn,'lqz',permanent=False) @app.route("/",endpoint="root") def hello_world(): session["k1"]="v1" return "hello!" if __name__ == '__main__': app.run()
过期时间配置PERMANENT_SESSION_LIFETIME
属性就可以,默认是31天。如果想要关闭浏览器使得session失效,配置一下permanent参数:
app.session_interface=RedisSessionInterface(conn,key_prefix='lqz',permanent=False) # 设置为False