Session less web application
I want to create web application which should be session less. Now I have a option of using Tokens, however I am not sure about the token also. Can some one help me.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Nilesh ShahPosted Aug 11, 2017, 9:24 AM
If not using server on session, then you can use cookies on client side
but I fail to understand why you don't want to use session? it helps in managing user requests in betterway. what you want to achieve by not using session?
Nilesh ShahPosted Aug 11, 2017, 9:48 AM
1000 concerent users is nothing, even the sites with millions of concerent users implement sessions
it depends on what resources you have
Pradeep YadavPosted Aug 11, 2017, 9:34 AM
Nilesh ShahPosted Aug 11, 2017, 9:31 AM
if you have memory issues, then instead of storing session in-proc (in memory),you can store the session in database server. this way ur memory will not be occupied by session
if at all you dont want to use session, then you can maintain user data using cookies or using query string
Pradeep YadavPosted Aug 11, 2017, 9:26 AM