0

I have an app using DB as session backend, and I realize that Django allows a Memcached-like (memcached, ElastiCache) session backend.

Reading the doc at Django site, I found the setting file can specify that change. My question is whether my view logic code files need any change.

chen
  • 4,302
  • 6
  • 41
  • 70

1 Answers1

1

No. You shouldn't have to change anything. If you deploy the code on a live site, active sessions will be lost (all users will be logged out).

Pierre Drescher
  • 776
  • 5
  • 10