Okay, this one is almost funny! I am developing an asp.net application on my local system, I press the > to start the debugger and view the app, then close the browser to do more work. I have this code to cache a dataset:
Dim ds As DataSet = Cache("directory")
If Not ds Is Nothing Then
dsDirectory = Cache("directory")
Else
Me.LoadDirectoryDS(di)
Cache("directory") = dsDirectory
End If
It appears the cache object is persisting between debugging sessions. Is this true? I thought if I closed my browser it would kill the cache? What is the cache duration/liftetime then?
Dim ds As DataSet = Cache("directory")
If Not ds Is Nothing Then
dsDirectory = Cache("directory")
Else
Me.LoadDirectoryDS(di)
Cache("directory") = dsDirectory
End If
It appears the cache object is persisting between debugging sessions. Is this true? I thought if I closed my browser it would kill the cache? What is the cache duration/liftetime then?