Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What are the disadvantages of using session?
Home
Dot Net
What are the disadvantages of using session?
0
votes
asked
Sep 19, 2023
in
Dot Net
by
Robin
What are the disadvantages of using session?
session-disadvantages
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 19, 2023
by
Robin
The disadvantages of using session are:
Performance overhead occurs in case of large number of users, because session data is stored in server memory.
Overhead involved in serializing and De-Serializing session Data. Because In case of StateServer and SQLServer session mode we need to serialize the object before store.
...