Django 1.11.8
I have to logout users that close the browser (or tab) without waiting the expire time session (there is one limit for number of the users online).
I can't solve with SESSION_EXPIRE_AT_BROWSER_CLOSE = True ,it doesn't delete the sesssion.
My idea is to add an inactivity timer on the server side for each user session, but I didn't find solutions or some examples about it.
Do you have suggestions how to implement this with django server? Would be one a good idea?