I am creating an MVC 3 application and asking a question about one sample scenario.
I have two objects - Order
and OrderDetails
. The order data is filled in on one page, detailed, edited, deleted on the other three pages. After filling out the order and data, I save this data group in the database.
As you can see, during the userβs work and before the data is saved in the database, I need to save the data about orders and details in the form of a kind of memory or similar object.
Now, if I store this object in Session
, then I am violating scalability - the application cannot be bound to several machines.
Is there a template or approach that allows you to scale and execute scripts as described?
Note. Non-Sql-Server Session Solution
Dusan source share