cancel
Showing results for 
Search instead for 
Did you mean: 

Shared Memory problem.. Export to ..

Former Member
0 Kudos

Hi Guys,

I am having a strange problem in Our production server.

We are doing like

EXPORT lv_user from lv_user to shared memory indx(XY) ID 'ZSCE135'

and importing it later

EXPORT lv_user TO lv_user  FROM shared memory indx(XY) ID 'ZSCE135'.



I have check in debug mode  the data is setting properly but when we fetch it is  returning different different values.


I think it is values of concurrent users.


Please help what will be the possible cause.


I fear only single instance is available in memory instead of multiple instances.



Thanks in advance,



Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Shared Memory concept doesn't work always! Due to load balancing your application might run in multiple application servers . If it happens then you may loose the data stored in memory (using shared memory).

I mean to say sometimes you might face problems in importing data from memory.

The solution is to use SESSION COOKIES.

Try it .

Former Member
0 Kudos

Shared Memory concept doesn't work always! Due to load balancing your application might in multiple application servers . If it happens then you may loose the data stored in memory (using shared memory).

I mean to say sometimes you might face problems in importing data from memory.

The solution is to use SESSION COOKIES.

Try it .

former_member184578
Active Contributor
0 Kudos

Hi,

I guess you have multiple application servers in production environment. Check the Recommendation section from this document:

hope this helps,

Regards,

Kiran