Flask-Session: redis vs filesystem

150 views Asked by At

In Flask-Session there are five different session types. I want to use redis but I have to install it first which may not be possible in a shared host. So I decided to use filesystem as the session type which uses cachelib.file.FileSystemCache as a session backend. Now my question is what are the cons of using filesystem instead of redis? Are the operations still atomic when using filesystem?

0

There are 0 answers