A
anandsoni
I have been working with a project where I need to deal with lot of
data. This data includes 10 thousands of records in the data grid.
There are thousand of users connected to the application, this causes
big performance problem with the application.
I learnt that it is Serializing/Deserializing causing the system to be
slow. Serializing is required because I am storing the ViewState to the
SessionState and SessionState is in StateServer.
Viewstate can be stored in the text file instead of Session, good, but
Serializing/Deserializng still causes problems with performance. Is
there any way we can avoid Serializing/Deserializing ViewState and
store it in Binary Format in a text file? Or may be convert the
VIEWState to some format that can be stored in text file without
Serializing?
Any help will be appreciated.
data. This data includes 10 thousands of records in the data grid.
There are thousand of users connected to the application, this causes
big performance problem with the application.
I learnt that it is Serializing/Deserializing causing the system to be
slow. Serializing is required because I am storing the ViewState to the
SessionState and SessionState is in StateServer.
Viewstate can be stored in the text file instead of Session, good, but
Serializing/Deserializng still causes problems with performance. Is
there any way we can avoid Serializing/Deserializing ViewState and
store it in Binary Format in a text file? Or may be convert the
VIEWState to some format that can be stored in text file without
Serializing?
Any help will be appreciated.