Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Shared memory objects lifetime and data recovery

Former Member
0 Kudos

Hello all,

I have a question about Shared Memory objects. How can I ensure that the data in a Shared Memory object is available always?.

In case of an Application server shutdown, I think all the data in SMO is lost for good. Is there any way I could write it all to another object and copy back from it to the SMO once the App server is up?. I am totally new to SHMO and am just wondering if this is feasible at all.

Thanks,

Jay

1 ACCEPTED SOLUTION

former_member194613
Active Contributor
0 Kudos

Shared Memory is a kind of buffer, for faster access during execution. The basis data should be saved in the database or filesystem to be able to rebuilt them in case of server shutdown.

3 REPLIES 3

former_member194613
Active Contributor
0 Kudos

Shared Memory is a kind of buffer, for faster access during execution. The basis data should be saved in the database or filesystem to be able to rebuilt them in case of server shutdown.

0 Kudos

Thanks Siegfried,

Do you suggest I write a program to check for updates to the Shared memory object and write it to a Z table to be written to the database or have Basis copy the object to a file at Database level?

Thanks

Jay

Former Member
0 Kudos

Not working on it anymore....