In asp.net, instance variables are created for each request. For example if I have a class called CustomerManager and if I create an instance of it on as aspx page, that instance is re-created for each request. I understand that static variables, methods, and cache objects are exempt from this.
Are there any web frameworks in different languages that create instance of an object (non static) once and share it across all the requests?