I have a class object which contains some data members and methods. I want to store this object for later use in the application.
Let me know which approach like session, cache etc is good in terms of performance.
Person per1 = new Person();
Here i want store the per1
object for later use in the application