Persisting data in memory after application terminated

  • Thread starter Thread starter Roy
  • Start date Start date
R

Roy

HI.
I need to save data in the web server's memory, even when
the application state expires.
When the application state is re-created, load the data
from the server's memory ( into the application state).

application and session states don't have life time long
enought.

Is there a way to do it?

Thanks
ROy
 
I'd be surprised if there was a way. Wouldn't the OS have to know which
processes' memory space the allocated memory was in?

Besides... what happens if your application never starts up again?

If it has to be in memory (not on the disk) due to access speed
requirements, maybe you could use a Ramdisk. Are those things still around?
I haven't used one for about 8 years or so :P

Niall
 
Back
Top